/* ================= GOOGLE FONT ================= */
/* Make sure this font link is in your HTML head:
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
*/

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f8fc;
    color: #1e293b;
    overflow-x: hidden;
}

html {
  scroll-padding-top: 100px;
}

/* ================= FLOATING MINI SOCIAL ================= */

.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
}

/* Brand Styles */
.insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.whatsapp {
  background: #25d366;
}

.youtube {
 background: red;
}

.facebook {
 background:  #1877F2;
}

.float-btn {
  text-decoration: none;
}





/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= NAVBAR ================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
     border-radius: 0 0 25px 25px;
}



















.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2563eb, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
     font-family: "Montserrat", sans-serif;
    
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;  /* smaller size for mobile */
    }
}

@media (min-width: 1025px) {
    .logo {
        margin-left: -50px; /* adjust value */
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1e293b;
     font-family: "Montserrat", sans-serif;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2563eb;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    
    border: none;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .nav-links {
        margin-left: auto;
        margin-right: -30px; /* adjust this value */
    }
}

/* ================= HERO SECTION ================= */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(-45deg, #0c1e4e, #1a7179, #0ea5e9, #528e1b);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Content */
.hero-content {
  max-width: 800px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-title {
  font-size: 48px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title span {
  color: #facc15;
    font-family: "Pacifico", cursive;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
   font-family: "Montserrat", sans-serif;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  
  background: white;
  color: #1e3a8a;
  font-weight: 600;
  border-radius: 50px;
  
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-outline {
  padding: 14px 32px;
  border: 2px solid white;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: #1e3a8a;
}

/* Text Fade Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* ================= SECTIONS ================= */
section {
    padding: .1px 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
}

section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #2563eb;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ================= CARDS ================= */
.service-cards,
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* ================= INSTAGRAM ================= */

.instagram {
    padding: 70px 0;   /* top & bottom spacing */
}


.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.insta-item img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}

.insta-item img:hover {
    transform: scale(1.05);
}

/* ================= CONTACT ================= */
.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.contact button {
    border: none;
    cursor: pointer;
}



/* ================= SCROLL ANIMATION ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 15px;
        display: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.nav-links.show {
    display: flex;
}

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */

.about-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 10px 30px;
}

.about-inner {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  align-items: center;
}

/* IMAGE */
.about-img {
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* TEXT */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.quote {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #475569;
}

.about-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* SERVICES */
.about-services {
  list-style: none;
  padding-left: 0;
}

.about-services li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.about-services li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.highlight {
  font-weight: 600;
  margin-top: 20px;
}

/* ================= DESKTOP LAYOUT ================= */

@media (min-width: 1025px) {
  .about-inner {
    grid-template-columns: 420px 1fr;
  }

  .about-img {
    text-align: left;
  }
}

@media (min-width: 1025px) {

  .about-inner {
    align-items: flex-start;   /* move content to top */
  }

  .about-text {
    margin-top: -10px;  /* adjust this value as needed */
  }

}
.about-text h2 {
  text-align: center;
  width: 100%;
}



/* ================= MOBILE SIDE MENU ================= */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  box-shadow: -5px 0 40px rgba(0,0,0,0.2);
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu-content a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  transition: 0.3s;
}

.mobile-menu-content a:hover {
  color: #2563eb;
  transform: translateX(5px);
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 26px;
  cursor: pointer;
}

/* Hide desktop nav in mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ================= OUR APPROACH ================= */

.approach-section {
  padding: 90px 0;
  
}

.approach-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

.approach-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.approach-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: #f8fbff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.approach-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.approach-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 15px;
  background: #2563eb;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-card h3 {
  margin-bottom: 15px;
}

.approach-card p {
  line-height: 1.7;
  color: #475569;
}




/* ================= CERTIFICATE SECTION ================= */

.certificate-section {
  padding: 10px 0;
 
}

.certificate-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

.certificate-container {
  display: flex;
  justify-content: center;
}

.certificate-container img {
  width: 100%;
  max-width: 900px; /* perfect for landscape certificate */
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.certificate-container img:hover {
  transform: scale(1.02);
}








/* ================= CONTACT SECTION ================= */

.contact {
    padding: 40px 0;   /* top & bottom spacing */
}

.contact h2 {
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
     font-family: "Montserrat", sans-serif;
    border-radius: 50px;
    cursor: pointer;
    color: white;
    background: linear-gradient(45deg, #2563eb, #06b6d4, #1e40af);
    background-size: 200% 200%;
    transition: 0.4s ease;
}

.contact .btn:hover {
    background-position: right center;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}




/* ================= LUXURY FOOTER ================= */
.luxury-footer {
    background: #000032; /* Dark Charcoal */
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
    border-top-left-radius: 50px; /* The curved top seen in your screenshot */
    border-top-right-radius: 50px;
    margin-top: 50px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    width: 100px;        /* adjust size */
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


.footer-logo img {
     width: 112px;      /* your small size */
    height: auto;
    display: block;
}




.tagline {
    font-style: italic;
    color: #bbb;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col p, .footer-col li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    list-style: none;
}

.footer-col ul {
    padding: 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #e6c56d;
}

/* WhatsApp Form Style */
.inquiry-form input, .inquiry-form textarea {
    width: 100%;
    background: #333;
    border: 1px solid #444;
    padding: 12px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
}

.wa-btn {
    width: 100%;
    background: #25d366; /* WhatsApp Green */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.wa-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    display: flex;
    flex-direction: column;   /* THIS makes it 2 lines */
    align-items: center;      /* center them horizontally */
    gap: 6px;                 /* space between lines */
    font-size: 12px;
    color: #888;
    text-align: center;
}



.designer {
    color: #e6c56d;   /* gold color */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.designer:hover {
    text-decoration: underline;
    opacity: 0.8;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}



/* ================= TESTIMONIALS SECTION ================= */

.testimonials {
    padding: 90px 0;   /* top & bottom spacing */
}

.testimonials h2 {
    margin-bottom: 60px;
}


