/* assets/css/main.css */
/* ---------- Variables ---------- */
:root{
  --pc-dark: #0d1b2a;
  --pc-accent: #12d1c2;
  --pc-accent-2: #4ad1ff;
  --pc-bg: #f7fbff;
  --pc-white: #ffffff;
  --pc-text: #0c1b2a;
  --pc-muted: #607080;
  --pc-radius: 14px;
  --pc-shadow: 0 12px 30px rgba(12,27,42,.08);
  --pc-navbar-height: 72px;
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--pc-bg);
  color:var(--pc-text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* main area spacing (push below fixed navbar) */
#pc-main { padding-top: calc(var(--pc-navbar-height) + 12px); }

/* ---------- Navbar (pc-) ---------- */
.pc-navbar{
  height: var(--pc-navbar-height);
  background: transparent;
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
  padding: 10px 0;
  border-bottom: 0;
  z-index: 1100;
}

/* Brand */
.pc-brand { font-weight:700; color:var(--pc-white); }
.pc-brand-badge {
  width:36px;height:36px;border-radius:8px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--pc-accent),var(--pc-accent-2));
  color:#062021;font-weight:800;
}
.pc-brand-text{ color: var(--pc-white); font-weight:700; }
.pc-brand-accent{ color: var(--pc-accent-2); }

/* Dark background state (when scrolled) */
.pc-navbar.pc-navbar-scrolled{
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.45));
  box-shadow: 0 6px 24px rgba(3,8,12,.35);
  padding: 6px 0;
}

/* Nav-link look */
.pc-navlist .nav-link {
  color: rgba(255,255,255,.92);
  padding: 8px 10px;
  transition: color .15s, background .15s;
}
.pc-navlist .nav-link:hover{
  color: var(--pc-accent);
  background: rgba(255,255,255,.03);
  border-radius:8px;
}

/* Quote button on navbar */
.pc-btn-quote{
  background: var(--pc-accent);
  color:#041211;
  font-weight:700;
  padding:8px 12px;
  border-radius:10px;
  border:0;
  box-shadow: var(--pc-shadow);
}

/* Mobile: slightly larger tappable nav items */
@media (max-width: 991px){
  .pc-navlist .nav-link { padding: 12px 8px; }
  .pc-brand-text { font-size: 1rem; }
}

/* ---------- Utility placeholders for future sections ---------- */
.section { padding: 72px 0; }
.section--light { background: linear-gradient(180deg,#f7fbff,#eef9ff); }
.section--card { padding: 48px; border-radius: var(--pc-radius); box-shadow: var(--pc-shadow); background: var(--pc-white); }

/* small helpers */
.text-muted-pc { color: var(--pc-muted); }
.rounded-pc { border-radius: var(--pc-radius); }

/* ---------- Accessibility focus ---------- */
a:focus, button:focus {
  outline: 3px solid rgba(18,209,194,.18);
  outline-offset: 3px;
  border-radius: 6px;
}


/* ========== Navbar Styling ========== */
.navbar-custom {
  background: #0d1117; /* dark modern background */
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar-custom .navbar-brand {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar-custom .navbar-brand:hover {
  color: #00d4ff;
}

.navbar-custom .nav-link {
  color: #ddd;
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-custom .nav-link:hover {
  color: #00d4ff;
  transform: translateY(-2px);
}

/* Hamburger Icon */
.navbar-custom .navbar-toggler {
  border: none;
  outline: none;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navbar on Scroll Effect */
.navbar-custom.scrolled {
  background: #000000; /* darker background after scroll */
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
  .navbar-custom .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.hero-section .carousel-item {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.carousel-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /*background: rgba(0,0,0,0.4); *//* dark overlay for text visibility */
  padding: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-section p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

.hero-section .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}





/* HERO 2 SMILEY ARC */
    .smiley-hero{
      background:linear-gradient(135deg,#f8fbff,#e9faff);
      padding:80px 20px;
      text-align:center;
      position:relative;
      overflow:hidden;
    }
    .smiley-arc{
      position:relative;
      width:250px;
      height:250px;
      margin:0 auto;
      border-radius:50%;
      border:3px dashed #4ad1ff;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .smiley-face{
      font-size:3rem;
      animation:bounce 2s infinite;
    }
	
	.smiley-face:hover {
		font-size: 8rem;	 
	}
	
    .emoji{
      position:absolute;
      font-size:1.5rem;
      animation:float 4s infinite ease-in-out;
    }
    .emoji:nth-child(2){top:0;left:50%;}
    .emoji:nth-child(3){bottom:0;left:50%;}
    .emoji:nth-child(4){left:0;top:50%;}
    .emoji:nth-child(5){right:0;top:50%;}
    
    @keyframes bounce{
      0%,100%{transform:translateY(0);}
      50%{transform:translateY(-10px);}
    }
    @keyframes float{
      0%,100%{transform:translateY(0);}
      50%{transform:translateY(-15px);}
    }
	


 
/* Floating Buttons Container */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* WhatsApp Icon */
.whatsapp-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-icon img:hover {
  transform: scale(1.1);
}

/* To Top Button */
.top-icon {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: none; /* By default hidden */
}
.top-icon:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  transform: translateY(-3px);
}
 
 
/* Footer Background */
.site-footer {
  background: linear-gradient(135deg, #0a0f1e, #1e2746);
  color: #fff;
  position: relative;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

 

/* Footer Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #4dd0e1;
}

.footer-col p, .footer-col li, .footer-col a {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4dd0e1;
  text-decoration: underline;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin: 0 8px 8px 0;
  width: 36px;
  height: 36px;
  background: #1e2746;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #4dd0e1;
  color: #0a0f1e;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 20px 20px 0;
  background: #4dd0e1;
  color: #0a0f1e;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #fff;
  color: #1e2746;
}

/* Enquiry Button */
.enquiry-btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4dd0e1, #1e90ff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #1e90ff, #4dd0e1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


/* Copyright */
.copyright-bar {
  background: #060913;
  text-align: center;
  color: #aaa;
  padding: 12px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter {
    flex-direction: column;
  }
  .newsletter input, .newsletter button {
    border-radius: 20px;
    margin: 5px 0;
  }
}
 