        :root {
            --primary-black: #000000;
            --secondary-black: #1a1a1a;
            --primary-white: #ffffff;
            --secondary-white: #f8f9fa;
            --accent-gray: #6c757d;
             --gold: #aa7724;
            --blue: #144589;
            --cream: #fcfaf7;
            --dark: #2a2a2a;
            --light-blue: #e8f0fe;
            --light-gold: #f9f3e9;
        }
       
        body {
/*             font-family: 'Inter', sans-serif; */
			font-family: 'poppins', sans-serif;
            color: var(--primary-black);
            overflow-x: hidden;
        }
   


/* Sticky button on right side */
#collect-chat-btn {
  position: fixed;
  right: -155px; /* mostly hidden */
  inset-block-end: calc(env(safe-area-inset-bottom) + 100px);/* adjust vertical position */
  display: flex;
  align-items: center;
  background-color: #2562e8;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 25px 0 0 25px;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  white-space: nowrap;
  transition: right 0.3s ease;
  z-index: 999999;
}

#collect-chat-btn:hover {
  right: 0; /* slide fully visible */
}

#collect-chat-btn .chat-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* Modal overlay */
#collect-chat-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0; /* align to right */
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: flex-end; /* right side */
  align-items: flex-end;
  z-index: 99999999;
	transition: all 3s ease;

}

/* Chat box inside modal */
.collect-chat-box {
  width: 400px;
  max-width: 90%;
  height: 80%;
  background: white;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  position: relative;
  margin: 0 20px 20px 0; /* space from bottom and right */
	transition: all 3s ease;

}

/* Close button */
.collect-close-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
	transition: all 3s ease;

}

/* Chat iframe */
.collect-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
	#collect-chat-btn{
		right:-150px;
	
	}
	#collect-chat-btn .chat-icon  {
  width: 35px;
  height: 35px;
}

  
}
#chat-bot-launcher{
	display: none !important;
}

/* WhatsApp custom button */
.custom-chat-btn {
  position: fixed;
  inset-block-end: calc(env(safe-area-inset-bottom) + 150px);
  right: -155px; /* mostly hidden */
   /* adjust vertical position */
  display: flex;
  align-items: center;
  background-color: #2562e8;
  color: white;
  
  font-weight: 500;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 25px 0 0 25px;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: right 0.3s ease;
  z-index: 999999;
}

.custom-chat-btn:hover {
  right: -40px;
}

.custom-chat-btn .chat-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* CollectId button */
#collect-launcher {
  position: fixed !important;
  top: 50%;
  right: 0 !important;
  transform: translateY(20px); /* position below WhatsApp */
  z-index: 9999999 !important;
}

/* Mobile: stack buttons horizontally at bottom right */
@media screen and (max-width: 768px) {
 
  #collect-launcher {
    top: auto !important;
    bottom: 20px !important;
    right: 0 !important;
    transform: none !important;
  }
	.custom-chat-btn {
  position: fixed;
		
		right: -150px;
	}
	.custom-chat-btn .chat-icon {
  width: 35px;
  height: 35px;
}
}







        /* Header Styles */
        .navbar {
  background-color: var(--primary-white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
}

/* Common nav link styling */
.navbar-nav .nav-link {
  color: var(--primary-black);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
  padding: 8px 12px;
  border-radius: 4px;
}
.navbar-nav .nav-link:hover,
.navbar-nav li.active a{
  color: #14458a;
}





@media (max-width: 1401px)
 { .navbar-expand-lg .navbar-nav .nav-link{font-size: 16px; margin: 0;} }
  @media (max-width: 1201px)
   { .navbar-expand-lg .navbar-nav .nav-link{font-size: 14px;} }

/* --- Desktop View (Normal Navbar) --- */
@media (min-width: 992px) {
  .offcanvas {
    position: static;
    height: auto !important;
    visibility: visible;
    background: transparent;
    transform: none !important;
    display: flex !important;
    align-items: center;
  }

  .offcanvas-header {
    display: none;
  }

  .offcanvas-body {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: center;
  }
}




/* --- Mobile Offcanvas Styles --- */
@media (max-width: 991.98px) {

 .navbar-nav{text-align: left !important;}
             .navbar-expand-lg .navbar-nav .nav-link{padding:20px; font-size: 16px; border-bottom: 1px solid #171515; border-radius: 0 !important; color:#fff}
.offcanvas-title{color:#fff}
.offcanvas-header .btn-close{filter: invert(1);}
  .offcanvas-start {
    width: 100%;             /* Full width (or use 80% for sidebar feel) */
    height: 100vh;           /* Full height */
    background-color: #000;
    transition: all 0.4s ease-in-out;
  }

  .offcanvas-header {
    border: none;
    padding: 1rem 1.5rem;
  }

  .offcanvas-body {
    padding: 0;
  }

  .offcanvas .navbar-nav {
    width: 100%;
  }

  .offcanvas .nav-link {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin: 12px 0;
    transition: all 0.3s;
    display: block;
  }

  .offcanvas .nav-link:hover, .offcanvas .nav-link.active {
    background: var(--gold);
    border-radius: 8px;
  }

  .btn-close {
    filter: invert(0.4);
  }
}
       
        /* Hero Banner */
        .hero-banner {
            width: 95%;
            margin: 0 auto;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 80vh;
            max-height: 700px;
        }
       
        .carousel-item {
            height: 80vh;
            max-height: 700px;
        }
       
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            /* filter: grayscale(100%); */
        }
       
        .carousel-caption {
            bottom: 30%;
            text-align: left;
            background: rgba(255, 255, 255, 0.8);
            padding: 30px;
            border-radius: 5px;
            color: var(--primary-black);
        }
       
        .carousel-caption h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
                color: #14458a;
        }
       
        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
       
        .btn-custom {
            background-color: #14458a;
            color: var(--primary-white);
            padding: 10px 25px;
            border-radius: 0;
            font-weight: 600;
            transition: all 0.3s;
        }
       
        .btn-custom:hover {
            background-color: #1e68d1;
            color: var(--primary-white);
        }
        .carousel-control-next-icon, .carousel-control-prev-icon{width: 3rem; height: 3rem;}

        .carousel-control-next-icon{background-image: url(../images/kk-carousel-next-icon.png); }
        .carousel-control-prev-icon{background-image: url(../images/kk-carousel-next-icon.png); transform: rotate(180deg); }
        .carousel-indicators [data-bs-target]{background: #000; display: none;}
       
        /* Welcome Section - Updated Design */
        .welcome-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 100px 0;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }
       
        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(179, 200, 222, 0.15) 100%);
            z-index: 1;
        }

        .architectural-line {
            position: absolute;
            top: 50%;
            right: 20%;
            width: 2px;
            height: 80%;
            background: linear-gradient(to bottom, transparent, #a8c0d6, transparent);
            transform: translateY(-50%);
            z-index: 2;
        }

        .architectural-line::before,
        .architectural-line::after {
            content: '';
            position: absolute;
            left: -8px;
            width: 18px;
            height: 18px;
            border: 2px solid #a8c0d6;
            border-radius: 50%;
            background: white;
        }

        .architectural-line::before { top: 20%; }
        .architectural-line::after { bottom: 20%; }

        /* Colorful heading styles */
        .welcome-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .title-line1 {
            color:#14458a; /* Sophisticated blue for "Designing Spaces" */
            display: block;
        }

        .title-line2 {
            color: #8194af; /* Complementary softer blue for "That Inspire Living" */
            display: block;
        }

        .welcome-subtitle {
            font-size: 1.25rem;
            color: #5d7a9c;
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.6;
        }

        /* Pastel colored feature pills */
       .feature-pill {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    margin: 0 10px 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
}

.feature-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: left 0.4s ease;
}

.feature-pill:hover::before {
    left: 0;
}

.feature-pill:hover {
    color: #000; /* or darker version of text */
}


        .pill-1 {
            background-color: rgb(179 200 222); /* Soft blue */
            color: #5a7ea6;
        }

        .pill-2 {
            background-color: rgba(222, 179, 209, 0.3); /* Soft pink */
            color: #9c5a8a;
        }

        .pill-3 {
            background-color: rgb(179 222 199); /* Soft green */
            color: #5a9c7e;
        }

        .pill-4 {
            background-color: rgb(222 209 179); /* Soft beige */
            color: #9c8a5a;
        }

        .btn-architectural {
            background: #14458a; /* Pastel blue shade */
            border: none;
            color: white;
            padding: 12px 35px;
            border-radius: 2px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-architectural:hover {
            background: #4d8ce1; /* Slightly darker pastel blue */
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(143, 168, 191, 0.3);
            color: white;
        }
        
        
  
        
        
       
        /* Services Section */
       .hd{ color: #5895eb;}
        .services-section {
            padding: 80px 0;
            background-color: var(--primary-black);
            color: var(--primary-white);
        }
       
        .services-section .section-title:after {
            background-color: var(--primary-white);
        }
       
        .service-box {
            background-color: var(--primary-white);
            color: var(--primary-black);
            padding: 40px 30px;
            border-radius: 5px;
            transition: all 0.4s ease;
            height: 300px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
       
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
       
        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
                color: #14458a;
               
        }
       
        .service-box h4 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 19px;
    color: #8f5f1d;
        }
       
        /* Gallery Section */
        .hd1{color:#aa7724;}
        .gallery-section {
            padding: 80px 0;
            background-color: var(--secondary-white);
        }
       
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-gap: 0;
        }
       
        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1/1;
        }
       
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             filter: grayscale(0%);
            transition: all 0.4s ease;
        }
       
        .gallery-item:hover img {
          
             filter: grayscale(100%);
            transform: scale(1.05);
        }
       
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: var(--primary-white);
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
       
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
       
        /* Parallax Section */
        .parallax-section {
            background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
        }
       
        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
       
        .parallax-content {
            position: relative;
            z-index: 1;
            color: var(--primary-white);
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }
       
        .parallax-content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
       
        /* Testimonials Section */
        .testimonials-section {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
                background: linear-gradient(to right, #14458a, #87b4ed);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: rgba(52, 152, 219, 0.1);
            z-index: -1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 25px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 15px;
            border: 3px solid #3498db;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .avatar-1 {
            background: linear-gradient(45deg, #a9d5f3, #e1fded);
        }

       

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 700;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .author-role {
            color: #3498db;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

       

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: #7f8c8d;
        }

        @media (max-width: 768px) {
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-container {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
			.btn-architectural{
				position:relative;
				z-index:50;
			}
			.feature-pill{
				z-index:50;
			}
	.fg-default .fg-item {
  flex: 1 1 calc(50% - var(--fg-gutter)) !important;
  box-sizing: border-box !important;
}

/* Force all items to take 50% width */
.fg-default .fg-item {
  max-width: calc(50% - var(--fg-gutter)) !important;
}

/* Ensure the last item also respects the width */
.fg-default .fg-item:last-child {
  flex-basis: calc(50% - var(--fg-gutter)) !important;
  max-width: calc(50% - var(--fg-gutter)) !important;
}
			.fg-image-wrap img{width:100% !important;}
		
			
			
			
        }
       
       .section-title{font-size:40px;color: #144589;}
       

      /* Wrapper with full background */
.highlight-wrapper {
    padding: 70px 0 100px;
    background: var(--light-gold); /* or any color you want */
    text-align: center;
}

/* Title */
.highlight-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 60px;
}

/* Main Section */
.highlight-section {
    display: flex;
    justify-content: center;
    gap: 160px;
    flex-wrap: wrap;
}

/* Box */
.highlight-box {
    text-align: center;
}

/* Diamond */
.diamond {
    width: 280px;
    height: 280px;
    background: #00887a;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    margin: 0 auto 60px;
    border-radius: 14px;
}

/* Inner border */
.diamond::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 6px solid var(--primary-white);
    border-radius: 12px;
    box-sizing: border-box;
}

/* Icon */
.diamond img {
    width: 120px;
    height: 120px;
    transform: rotate(-45deg);
    border-radius: 50%;
}

/* Heading */
.highlight-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

/* CTA Button */
.btn-read {
    display: inline-block;
    background: #aa7724;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    width: 240px;
}

.btn-read:hover {
    background: #7b4f07;
}

/* ------------------------------------ */
/* RESPONSIVE */
/* ------------------------------------ */

@media (max-width: 1200px) {
    .highlight-section {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .diamond {
        width: 220px;
        height: 220px;
    }

    .diamond img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .highlight-section {
        flex-direction: column;
        gap: 70px;
    }

    .highlight-title {
        font-size: 28px;
    }
    .btn-read{width: auto; padding: 10px;}
}

@media (max-width: 480px) {
    .diamond {
        width: 180px;
        height: 180px;
    }

    .diamond img {
        width: 70px;
        height: 70px;
    }

    .btn-read {
        width: 200px;
    }
}

       
        /* Footer */
        .footer {
            background-color: var(--secondary-black);
            color: var(--primary-white);
            padding: 60px 0 0;
        }
       
        .footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
       
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-white);
        }
      .footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--accent-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a i {
    color: var(--accent-gray);
    transition: color 0.3s;
}


.footer-links a {
    color: var(--accent-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
    color: #a3c9ff;
    text-shadow: 0 0 8px var(--primary-white);
}

.footer-links a:hover i {
    color: var(--primary-white);
}



        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: var(--primary-white);
            transition: all 0.3s;
        }
       
        .social-icons a:hover {
            background-color:#14458a;
            color: #fff;
        }
       
        .footer-bottom {
            background-color: var(--primary-black);
            padding: 20px 0;
            margin-top: 40px;
        }
       
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
           
            .carousel-caption {
                bottom: 20%;
                padding: 20px;
            }
           
            .carousel-caption h3 {
                font-size: 2rem;
            }
           
            .welcome-title {
                font-size: 2.8rem;
            }
        }
       
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .hero-banner, .carousel-item {
                height: 60vh;
            }
           
            .carousel-caption {
                bottom: 10%;
            }
           
            .carousel-caption h3 {
                font-size: 1.0rem;
                margin-bottom: 4px;
            }
            .carousel-caption p {
  font-size: 0.7rem; margin-bottom: 5px;
            }
            .btn-custom{padding: 5px 13px; font-size: 13px;}
                  .carousel-control-next-icon, .carousel-control-prev-icon{width: 2rem; height: 2rem;}
           
            .welcome-section {
                padding: 60px 0;
                text-align: center;
            }
           
            .welcome-title {
                font-size: 2.5rem;
            }
           
            .welcome-subtitle {
                font-size: 1.1rem;
            }
           
            .architectural-line {
                display: none;
            }
           
            .welcome-section::before {
                width: 100%;
                opacity: 0.3;
				
            }
        }
       @media (max-width: 767px) {
  .container, .container-sm {
    max-width: 700px;
		   }
}
        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
           
            .navbar-brand span {
                font-size: 1.2rem;
            }
           
            .welcome-title {
                font-size: 2rem;
            }
           
            .feature-pill {
                display: block;
                margin: 0 0 10px 0;
            }
        }

        .about-sec{background: var(--cream);}

        .hero-section1 {
            padding: 160px 0 100px;
            background: 
                linear-gradient(rgba(20, 69, 137, 0.85), rgba(20, 69, 137, 0.9)),
                url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero-accent {
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .foundation-date {
            background: rgba(170, 119, 36, 0.2);
            border-left: 4px solid var(--gold);
            padding: 20px;
            margin: 40px 0;
            text-align: left;
        }
        
        .section-spacing {
            padding: 100px 0;
        }
        
        .section-title1 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--blue);
            position: relative;
        }
        
        .section-title1:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .center-title .section-title1:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .vision-section {
            background: white;
            border-radius: 20px;
            padding: 60px;
            margin: -80px auto 0;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            max-width: 1200px;
        }
        
        .vision-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--dark);
        }
        
        .operations-section {
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            margin: 60px 0;
        }
        .operations-section  .section-title1:after { left: 50%; transform: translateX(-50%);}

        
        .operation-card {
            background: var(--cream);
            border-radius: 15px;
            padding: 40px;
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(170, 119, 36, 0.1);
        }
        
        .operation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .operation-icon {
            width: 80px;
            height: 80px;
            background: rgba(20, 69, 137, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--blue);
            font-size: 2rem;
        }
        
        .operation-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--blue);
        }
        
        .specializations-section {
            /* padding: 80px 0; */
        }
        .specializations-section .section-title1:after { left: 50%; transform: translateX(-50%);}
        
        .specialization-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 50px 0;
        }
        
        .specialization-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .specialization-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .specialization-icon {
            width: 70px;
            height: 70px;
            background: rgba(170, 119, 36, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .specialization-content h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--blue);
        }
        
        .stats-section1 {
            background: 
                linear-gradient(rgba(20, 69, 137, 0.9), rgba(20, 69, 137, 0.9)),
                url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2064&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .stats-container1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .stat-item1 {
            padding: 30px;
        }
        
        .stat-number1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label1 {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .leadership-section {
            padding: 100px 0;
            background: white;
            border-radius: 20px;
        }
        
        .leadership-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .leadership-content {
            padding-right: 40px;
        }
        
        .leadership-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 10px;
        }
        
        .leadership-title {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .leadership-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            line-height: 1.6;
            color: var(--dark);
            border-left: 4px solid var(--gold);
            padding-left: 20px;
            margin: 40px 0;
        }
        
        .leadership-visual {
            background: 
                linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%),
                url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            border-radius: 20px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 6rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .commitment-box {
            background: rgba(170, 119, 36, 0.1);
            padding: 40px;
            border-radius: 12px;
            margin: 50px 0;
            border-left: 4px solid var(--gold);
            text-align: center;
        }
        
        .gold-text {
            color: var(--gold);
            font-weight: 600;
        }
        
        @media (max-width: 992px) {
            .specialization-grid,
            .stats-container,
            .leadership-container {
                grid-template-columns: 1fr;
            }
            
            .vision-section {
                padding: 40px 30px;
                margin: -50px 20px 0;
            }
            
            .leadership-content {
                padding-right: 0;
            }
            
            .leadership-visual {
                height: 300px;
                order: -1;
            }
            
            .hero-section1 {
                background-attachment: scroll;
                padding: 120px 0 80px;
            }
            
            .stats-section {
                background-attachment: scroll;
            }
        }
    

/* Stylish Header */
        .header {
            background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
            color: white;
            padding: 80px 40px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }
        
        .header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #8B7355, #D4B896, #8B7355);
        }
        
        .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .main-title::before, .main-title::after {
            content: '✻';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8rem;
            color: #D4B896;
            opacity: 0.7;
        }
        
        .main-title::before {
            left: -50px;
        }
        
        .main-title::after {
            right: -50px;
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #cbd5e0;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 25px;
            position: relative;
        }
        
        .header-description {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #a0aec0;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .decoration-line {
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4B896, transparent);
            margin: 30px auto;
        }
        
  .section-title2 {
            font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  color: #2c3e50;
        }
        
        .section-title2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 40px;
            background: linear-gradient(to bottom, #8B7355, #D4B896);
            border-radius: 4px;
        }

        .gallery-item1{osition: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
  background-color: #fff;}
.gallery-item1:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item1:hover img {
  transform: scale(1.05);
}
.project-gallery{margin-bottom: 100px;}

.testimonial-bg{background-color: #f9f9f9;
            color: #333;
            padding: 20px 0;
            overflow-x: hidden;}


            /* Creative Heading with SVG Animation */
        .creative-heading {
            position: relative;
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }
        
        .heading-text {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .heading-subtitle {
            font-size: 1.3rem;
            color: var(--blue);
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .svg-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.7;
        }
        
        .floating-shape {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-shape-2 {
            animation: float 8s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .floating-shape-3 {
            animation: float 7s ease-in-out infinite;
            animation-delay: 2s;
        }
        
        .rotating-shape {
            animation: rotate 15s linear infinite;
            transform-origin: center;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        

        /* Modern Testimonial Cards */
        .testimonial-modern {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border-left: 5px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .testimonial-modern::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--light-gold);
            border-radius: 0 0 0 100px;
            z-index: 0;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .customer-avatar {
            width: 80px !important;
            height: 80px !important;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold);
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .customer-details h3 {
            color: var(--blue);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .customer-details p {
            color: var(--gold);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .project-badge {
            display: inline-block;
            background: var(--blue);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .rating-stars {
            color: var(--gold);
            margin: 10px 0;
            font-size: 1.1rem;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-quote {
            font-style: italic;
            line-height: 1.7;
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-quote::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 4rem;
            color: var(--gold);
            position: absolute;
            left: -10px;
            top: -15px;
            opacity: 0.3;
        }
        
        .testimonial-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px dashed #e0e0e0;
            font-size: 0.9rem;
            color: #777;
        }
        
        .project-info {
            display: flex;
            gap: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
        }
        
        .info-item i {
            margin-right: 8px;
            color: var(--blue);
        }

        @media (max-width: 768px) {
            
            
            .heading-text {
                font-size: 2.5rem;
            }
        }

        /* Decorative elements */
        .decorative-dots {
            position: absolute;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(var(--gold) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 0;
        }
        
        .dots-1 {
            top: 10%;
            left: 5%;
        }
        
        .dots-2 {
            bottom: 10%;
            right: 5%;
        }

.contact-bg{background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            padding: 20px;}

            .container-custom {
            max-width: 1200px;
            margin: 80px auto 40px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1rem;
        }
        
        .page-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .btn-submit {
            background: var(--blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1rem;
            width: 100%;
        }
        
        .btn-submit:hover {
            background: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(20, 69, 137, 0.1);
        }

        /* Option 2: Gradient Cards */
        .gradient-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .gradient-card {
            background: linear-gradient(135deg, var(--blue) 0%, #0d3568 100%);
            color: white;
            border-radius: 15px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(20, 69, 137, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gradient-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }
        
        .gradient-card:hover::before {
            transform: rotate(30deg) translate(20px, 20px);
        }
        
        .gradient-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(20, 69, 137, 0.3);
        }
        
        .gradient-icon {
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }
        
        .gradient-card h3 {
            margin-bottom: 10px;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }
        
        .gradient-card p {
            margin: 0;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Form Sections */
        .form-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        
        .form-section h2 {
            color: var(--blue);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2.2rem;
        }

        .map-section {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .map-placeholder {
            background: #e9ecef;
            /* height: 400px; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container-custom {
                margin-top: 120px;
            }
            
            .page-title h1 {
                font-size: 2.2rem;
            }
            
            .form-section {
                padding: 30px 20px;
            }
            
            }




            .registration-container {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            margin-top: 100px;
            margin-bottom: 100px;
        }
        
        .registration-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .registration-header {
            background: linear-gradient(135deg, var(--blue) 0%, #0d3568 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .registration-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .registration-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
        }
        
        .registration-body {
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            /* font-weight: 600; */
            color: var(--blue);
            margin-bottom: 8px;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 0.2rem rgba(20, 69, 137, 0.1);
        }
        
        .form-select {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
        }
        
        .btn-register {
            background: var(--blue);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.1rem;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn-register:hover {
            background: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
/*         .service-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .service-option {
            position: relative;
        }
        
        .service-option input {
            position: absolute;
            opacity: 0;
        }
        
        .service-label {
            display: block;
            padding: 15px;
            background: var(--light-gold);
            border: 2px solid transparent;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            color: var(--blue);
        }
        
        .service-option input:checked + .service-label {
            background: var(--blue);
            color: white;
            border-color: var(--gold);
        }
        
        .service-option:hover .service-label {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .optional-section {
            background: var(--light-gold);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .optional-section h5 {
            color: var(--blue);
            margin-bottom: 15px;
            font-weight: 600;
        } */


.service-options {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* two columns */
    gap: 15px !important;
    margin-bottom: 25px !important;
}
.wpcf7-list-item{margin:0px !important;}
.service-option {
    position: relative !important;
}

.service-option input {
    position: absolute !important;
    opacity: 0 !important;
}

.service-options .wpcf7-list-item label {
    display: block !important;
    padding: 15px !important;
    background: var(--light-gold) !important;
    border: 2px solid transparent !important;
    border-radius: 10px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-weight: 500 !important;
    color: var(--blue) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}

.service-options .wpcf7-list-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Checked state: style the *label* when the input is checked */
/* Use + .wpcf7-list-item-label because CF7 structure: input + span label-text */
/* Checked state styling for entire label */
.service-options label.checked {
  background: var(--blue) !important;
  color: white !important;
  border-color: var(--gold) !important;
}

.service-options .wpcf7-list-item label {
  display: inline-flex; /* or flex */
  align-items: center;
  cursor: pointer;
  /* other styles… */
}


/* Hover effect */
.service-options .wpcf7-list-item label:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}


/* Optional section */
.optional-section {
    background: var(--light-gold) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    margin-top: 30px !important;
}

.optional-section h5 {
    color: var(--blue) !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

/* Home Design */
.service-options .wpcf7-list-item:nth-child(1) label::before {
    content: "\f015" !important; /* Home */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 5px !important;
}

/* Office Design */
.service-options .wpcf7-list-item:nth-child(2) label::before {
    content: "\f1ad" !important; /* Building */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 5px !important;
}

/* Consultation */
.service-options .wpcf7-list-item:nth-child(3) label::before {
    content: "\f562" !important; /* Concierge bell */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 5px !important;
}

/* Optional: make labels flex for alignment */
.service-options .wpcf7-list-item label {
    display: flex !important;
    align-items: center !important;
}

.optional-section .form-check{
	margin-bottom: 10px !important;
	padding:0px !important;
}
.optional-section textarea{
	height:100px !important;
}
.optional-section br{
	
	display:none !important;
}
        .form-check {
            margin-bottom: 10px;
        }
        
        .form-check-input:checked {
            background-color: var(--blue);
            border-color: var(--blue);
        }
        
        .success-message {
            text-align: center;
            padding: 60px 30px;
            display: none;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--light-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--gold);
            font-size: 2.5rem;
        }
        
        .success-message h3 {
            color: var(--blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .success-message p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .btn-new-registration {
            background: var(--blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-new-registration:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .registration-header {
                padding: 30px 20px;
            }
            
            .registration-header h1 {
                font-size: 2rem;
            }
            
            .registration-body {
                padding: 30px 20px;
            }
            
            .service-options {
                grid-template-columns: 1fr !important;
            }
        }

/* Swamiji Blessing Section Styles */
/* .blessing-section {
    background: white;
    padding: 80px 0;
    border-radius: 20px;
    margin: 0px 0;
} */

.blessing-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(170, 119, 36, 0.1);
    height: 100%;
}

.blessing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blessing-image {
    height: 450px;
    overflow: hidden;
}

.blessing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blessing-card:hover .blessing-image img {
    transform: scale(1.05);
}

.blessing-content {
    padding: 25px;
    text-align: center;
}

.blessing-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--blue);
}

.blessing-content p {
    color: var(--dark);
    margin-bottom: 0;
}

.blessing-quote {
    background: rgba(20, 69, 137, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.blessing-quote p {
    color: var(--blue);
    margin-bottom: 0;
}



/* Fixed sound button styling */
#sound-btn {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

#sound-btn:hover {
  transform: scale(1.08);
  background: rgba(0, 0, 0, 1);
}

#sound-btn.active {
  color: var(--gold);
  box-shadow: 0 0 15px rgba(170,119,36,0.5);
}


        @media(max-width:769px)
        {
			
            body{text-align: center;}
           
             .footer h5::after{left: 50%; transform: translateX(-50%);}
             .footer-links{display: flex; justify-content: center; column-gap: 30px; flex-wrap: wrap;}
            .vision-section .section-title1:after, .leadership-section .section-title1:after { left: 50%; transform: translateX(-50%);}
.main-title{font-size: 2.5rem;}
.navbar{background: #000;}
.navbar-toggler{background:var(--blue); }
.navbar-toggler-icon{background-image: url(../images/hamburger-icon.svg) !important;}
#simpleRegistrationForm{text-align: left;}
.carousel-caption{left: 5%; right: 5%; bottom: 5%;}

        }

        #a1 {
    scroll-margin-top: 120px;  /* height of your fixed header */
}


.ngg-galleryoverview {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    justify-content: flex-start !important;
}

.ngg-gallery-thumbnail-box {
    width: calc(33% - 15px) !important; /* 3 columns */
    box-sizing: border-box;
}

.ngg-gallery-thumbnail img {
    width: 100% !important;
    height: auto !important;
}
.fg-item-inner{
	border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease !important;
    cursor: pointer !important;
    aspect-ratio: 4 / 3 !important;
    background-color: #fff !important;
}
.fg-item-inner:hover{
    transform: translateY(-8px) !important;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;}
.fg-item-inner:hover img {
    transform: scale(1.05) !important;
}
.fg-item-inner img {transition: transform 0.5s 
ease !important;}
.fg-panel.fg-dark
 {
    background-color: #151515e6 !important;
}
.gmedia-wp-playlist{border-radius:12px !important;overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease !important;
    cursor: pointer !important;
  
    background-color: #fff !important;}
.gmedia-wp-playlist:hover{
    transform: translateY(-8px) !important;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;}

.rating-stars {
    display: flex;
    gap: 2px; /* space between stars */
}

.rating-stars .star {
    width: 24px;       /* fixed width for all stars */
    text-align: center;
    display: inline-block;
}
.wpcf7-textarea {height:150px !important;}
.form-check br{display:none !important;}
/* Common styling for all service options */
.service-option label {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;          /* space between icon and text */
    margin: 0 !important;         /* remove top/bottom spacing */
    cursor: pointer !important;
}

/* Home Design icon */
.service-option label.home::before {
    content: "\f015" !important; /* Font Awesome home icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Office Design icon */
.service-option label.office::before {
    content: "\f1ad" !important; /* Font Awesome building icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Consultation icon */
.service-option label.consultation::before {
    content: "\f562" !important; /* Font Awesome concierge bell */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.wp-playlist-tracks{display:none !important;}
.wpnd-mhpro-post-item-excerpt{display:none !important;}
.wpnd-mhpro-post-item-meta{display:none !important;}






/* Top ad */
#adWrapper {
    overflow: hidden;
    max-height: 300px;      
    transition: max-height 0.6s ease;
}


#topAdBanner {
    opacity: 0;
    transition: opacity 1.8s ease;
}

#topAdBanner.show {
    opacity: 1;
}

#adWrapper.close {
    max-height: 0;
}

#topAdBanner.close {
    opacity: 0;
}
#topAdBanner img {
    display: block;
    margin: 0 auto;
}
.marquee-div{
	    background: linear-gradient(45deg, black, transparent);
    color: #ffffff;
    padding: 5px 0px 3px 0px;
	font-weight:500;

}
.marquee-div a{
	text-decoration:none;
    color: #ffffff;
	font-weight:500;

}
.marquee-div marquee{padding: 0px !important;
    margin: 0px !important;
    height: 100%;
}
.marquee-div p{margin:0px;}
@media(max-width:769px){
.marquee-div {
  
  color: #ffffff;
  padding: 5px 0px 3px 0px;
  font-weight: 500;
	border-bottom: 1px solid white;}}

	.services-section p{
		font-family: 'Poppins', sans-serif;
	}	
.gallery-section p{
		font-family: 'Poppins', sans-serif;
	}	

	
	
	
	
	
	
.specialization-content a{
	color: rgb(57 16 0);
	text-decoration: none;
}


#comments{
	display:none;
}
.post-navigation{
	display: none;
}