/* ========== Global Variables ========== */
:root {
     --black: #000000;
    --white: #ffffff;
    --yellow: #f7c958;
    --gray: #cccccc;
    --gray-dark: #1a1a1a;
    --green: #398e8c;
    --magenta: #e680a7;
    --offwhite: #ecf1e6;

  --font-heading: 'Futura', 'Segoe UI', 'Arial', sans-serif;
  --font-body: 'Futura', 'Segoe UI', 'Arial', sans-serif;
}

/* ========== Global Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--color-black);
  line-height: 1.6;
}

/* ========== Headings ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  text-transform: capitalize;
}

h2.subheading,
h3.subheading {
  color: var(--color-subheading);
}
/* === Topbar with curve === */
.topbar-b {
  background-color: #398e8c!important;
  padding: 8px 0;
  position: relative;
}

.topbar-b::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background-color: #398e8c;
  border-radius: 0 0 30px 30px;
}

/* === Main Navbar === */

    @media (max-width: 991.98px) {
      .navbar-collapse.show {
        height: auto !important;
        background-color: #dff6f5; /* Light background */
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      }
    }

.main-header .navbar-nav .nav-link {
  color: #398e8c;
  padding: 12px 18px;
  transition: all 0.3s ease;
  z-index: 1030;
}
.main-nav{
    height: 90px;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
     .main-nav{
    height: 80px;
    padding-bottom: 90px;
}
}
.main-header .nav-link:hover,
.main-header .nav-link.active {
  color:#f7c958 ;
}



.navbar-nav .dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dropdown-item:hover {
  background-color: #398e8c;
  color: white;
}

/* Default logo size */
.logo-img {
  height: 90px;
  width: auto;
}

/* On smaller screens, reduce size a bit */
@media (max-width: 768px) {
  .logo-img {
    height: 85px;
    margin-left: 50px;
  }
}


/* === Glow Buttons === */
.btn-glow {
            position: relative;
            width: 120px /* Slightly smaller than container to show glow */
            height: 30px /* Slightly smaller than container to show glow */
            background-color: white; /* White button color */
            border-radius: 6px; 
            padding: 6px 30px;/* Slightly less rounded than container for inner button */
            display: flex;
            text-decoration: none!important;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            font-weight: bold;
            color: #333; /* Dark text for readability */
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease; /* Smooth transition for hover effects */
            z-index: 1; /* Ensure button content is above glow */
        }
.register-now:hover {
    color:#f7c958;
}
.btn-glow-dark {
  background-color: #398e8c;
  padding: 6px 30px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 8px #f7c958, 0 0 8px #e680a7;
}

.btn-glow-light {
  background-color: #fff;
  color: #398e8c;
  text-decoration: none;
  box-shadow: 0 0 8px #f7c958, 0 0 8px #e680a7;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #faae87, 0 0 12px #398e8c;
  color: #f7c958;
}
/* === Footer Styling === */
.site-footer {
  background-color: #f5f5f5;
  color: #1a1a1a;
  font-family: 'Futura', sans-serif;
  border-top: 1px solid #ddd;
}

.footer-logo img {
  max-height: 100px;
}

.footer-heading {
  font-size: 2rem;
  color: #398e8c;
  margin-bottom: 20px;
  margin-top:10px;
}
.footer-tagline{
  font-size: 1rem;
  margin-bottom: 20px;
}

/* === Glow Buttons (matching your design) === */
.btn-footer-dark,
.btn-footer-light {
  border-radius: 12px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #f7c958, 0 0 8px #e680a7;
}

.btn-footer-dark {
  background-color: #398e8c;
  color: #fff;
  border: none;
}

.btn-footer-light {
  background-color: #fff;
  color: #398e8c;
  border: 1px solid #ccc;
}

.btn-footer-dark:hover,
.btn-footer-light:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #f7c958, 0 0 12px #e680a7;
  color: #faae87;
}

/* === Footer Menu === */
.footer-menu {
  padding: 0;
  margin: 0;
}

.footer-menu li a {
  color: #398e8c;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-menu li a:hover {
  color: #f7c958;
}
.hr{
    color:#e680a7;
    font-weight: 5px;
    
}

/* === SEO and Copyright === */
.footer-seo {
  margin-top:10px;
  font-size: 1.3rem;
}
.footer-seo i {
  color:#398e8c;
  font-size: 1.2rem;
}

.footer-copy {
  color: #666;
  font-size: 0.95rem;
}
/* === Base Footer Background === */
.animated-footer {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* === Floating Abstract Shapes === */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation-timing-function: ease-in-out;
}

/* Yellow shape - bottom left, slow float */
.shape.yellow {
  background-color: #f7c958;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -100px;
  animation: floatY 8s infinite alternate;
}

/* Green shape - top right, faster float + scale */
.shape.green {
  background-color: #398e8c;
  width: 200px;
  height: 200px;
  top: -50px;
  right: -60px;
  animation: floatX 5s infinite alternate;
}

/* Magenta shape - bottom right, bounce-like motion */
.shape.magenta {
  background-color: #e680a7;
  width: 180px;
  height: 180px;
  bottom: 20px;
  right: 40px;
  animation: floatScale 7s infinite alternate;
}

/* === Animations === */
@keyframes floatY {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

@keyframes floatX {
  0%   { transform: translateX(0) rotate(0deg); }
  100% { transform: translateX(-30px) rotate(5deg); }
}

@keyframes floatScale {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1) translateY(-20px); }
}

/* === Hero Section Base === */
.hero-section {
  padding: 50px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  font-family: 'Futura', sans-serif;
}

/* Heading Gradient Highlight */
.gradient-text {
  background: linear-gradient(90deg, #398e8c, #f7c958);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Image */
.hero-image {
  max-height: 500px;
}

/* Floating bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

/* Green moving bubble */
.green-bubble {
  background-color: #398e8c;
  width: 150px;
  height: 150px;
  top: 20%;
  left: -60px;
  animation: bubbleMove1 10s infinite ease-in-out;
}

/* Faded large blob */
.faded-circle {
  background-color: #f7c958;
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -80px;
  opacity: 0.08;
  animation: bubbleMove2 15s infinite alternate;
}

/* Animations */
@keyframes bubbleMove1 {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-20px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes bubbleMove2 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}

/* Floating image effect */
.animate-float {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.badge{
    font-size: 1rem;
}
.lead{
    font-size:16px;
    text-align: justify;
}
@media (max-width: 768px) {
  /* Hero section padding */
  .hero-section {
    padding: 60px 20px;
    text-align: center;
  }

  /* Adjust heading size */
  .hero-heading {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

  .hero-section p.lead {
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: justify;
  }

  /* Hero image */
  .hero-image {
    max-width: 90%;
    margin-top: 30px;
  }

  /* Badge / welcome label */
  .hero-section .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* Buttons: full width on mobile */
  .hero-section .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-section .d-flex {
    flex-direction: column;
    gap: 12px;
  }

  /* Hide background bubbles on mobile if needed */
  .hero-bubble {
    display: none;
  }
}

/* Services Section */
.services-section {
    padding: 60px 0;
    position: relative; /* For potential background shapes */
    overflow: hidden; /* To contain pseudo-elements */
}

.section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block; /* To allow underline effect */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%; /* Adjust as needed */
    height: 4px;
    background-color: #e57373; /* A color similar to the underline in the image */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes image to top, title to bottom */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block; /* Removes extra space below image */
}

.service-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #555;
    text-align: center;
    padding: 20px 15px;
    margin: 0;
    text-transform: uppercase; /* Match image style */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8em;
        text-align: center;
        width: 100%; /* For centering the underline as well */
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5em;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Stack items on very small screens */
    }
    .service-image {
        height: 180px;
    }
    .service-title {
        font-size: 1.1em;
    }
}

/* --- Enhancements (Not in original image but can make it "better") --- */

/* Adding subtle background shapes/patterns */
.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: #a8e6cf; /* Light green */
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    background-color: #ffd3b6; /* Light orange */
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

/* Adjust z-index for content to be above shapes */
.container {
    position: relative;
    z-index: 1;
}

        /* Specific service colors */
        .branding .service-title {
            color: #E91E63;
        }

        .web-design .service-title {
            color: #E91E63;
        }

        .event-management .service-title {
            color: #E91E63;
        }

        .digital-marketing .service-title {
            color: #E91E63;
        }

        .solutions-360 .service-title {
            color: #E91E63;
        }

        /* Pulse animation for cards */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.3);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
            }
        }

        .service-card:hover {
            animation: pulse 1.5s infinite;
        }

        /* Glow effect */
        .glow-effect {
            position: relative;
            overflow: hidden;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-effect:hover::after {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-row {
                gap: 15px;
            }
            
            .service-card {
                height: 300px;
            }
        }

        @media (max-width: 992px) {
            .services-row {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .service-card {
                flex: 0 0 calc(50% - 10px);
                margin-bottom: 20px;
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }
            
            .service-card {
                flex: 0 0 calc(50% - 10px);
                height: 250px;
            }
            
            .service-content {
                padding: 15px;
            }
            
            .service-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
                letter-spacing: 2px;
            }
            
            .service-card {
                flex: 0 0 100%;
                height: 220px;
                margin-bottom: 15px;
            }
            
            .service-content {
                padding: 12px;
            }
            
            .service-title {
                font-size: 0.9rem;
            }
        }

        /* Additional floating elements */
        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(74, 155, 142, 0.3);
            border-radius: 50%;
            animation: floatDot 6s ease-in-out infinite;
        }

        .dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 40%; left: 80%; animation-delay: -2s; }
        .dot:nth-child(3) { top: 60%; left: 20%; animation-delay: -4s; }
        .dot:nth-child(4) { top: 80%; left: 70%; animation-delay: -1s; }
        .dot:nth-child(5) { top: 30%; left: 50%; animation-delay: -3s; }

        @keyframes floatDot {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px);
                opacity: 0.8;
            }
        }
        .branding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Branding Hero Section (Left Content, Right Visual) */
.branding-hero-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content to the top */
    padding: 60px 0;
    background-color: #ffffff; /* White background for the main section */
    position: relative;
    overflow: hidden; /* To contain pseudo-elements */
}

/* Subtle background shapes (similar to image) */
.branding-hero-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-color: #d1f7e0; /* Light green */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.branding-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%; /* Adjusted for better visual balance */
    width: 100px;
    height: 100px;
    background-color: #f7e0d1; /* Light orange/peach */
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}


.branding-content {
    flex: 1; /* Takes up available space */
    max-width: 400px; /* Limit width to mimic the image's left column */
    padding-right: 40px; /* Space between content and image */
    position: relative; /* For z-index to be above shapes */
    z-index: 1;
}

.branding-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #555;
    margin-bottom: 30px;
    position: relative;
}

.branding-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20px; /* Position the background shape */
    width: 100px;
    height: 100px;
    background-color: #e0f2f7; /* Light blue/green, similar to image */
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

/* --- START: Changes for Branding Sub-Sections to be in a row/cards --- */
.branding-sub-sections {
    margin-top: 30px;
    display: flex; /* Make it a flex container */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 20px; /* Space between cards */
    justify-content: flex-start; /* Align items to the start */
}

.sub-section-item {
    flex: 1 1 calc(33.333% - 20px); /* Approx 3 items per row with gap */
    min-width: 250px; /* Minimum width for each card */
    background-color: #f0f8ff; /* A light, distinct background for the card */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 0; /* Remove previous margin-bottom from vertical stacking */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-section-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sub-section-title {
    font-size: 1.1em; /* Slightly smaller for card */
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-section-description {
    font-size: 0.85em; /* Slightly smaller for card */
    color: #666;
}
/* --- END: Changes for Branding Sub-Sections --- */


.branding-visual-panel {
    flex: 2; /* Takes more space for the visual */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main-branding-image {
    width: 100%;
    max-width: 800px; /* Limit max width for large screens */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Space between main image and collateral */
    display: block;
}

.branding-collateral {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.collateral-logo,
.collateral-mockups {
    width: calc(50% - 10px); /* Approximately half width with gap */
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Branding Details Section (Bottom Row - already in grid/row format) */
.branding-details-section {
    padding: 60px 0;
    background-color: #f0f0f0; /* Slightly darker background for this section */
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.detail-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.detail-description {
    font-size: 0.9em;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .branding-hero-section .branding-container {
        flex-direction: column; /* Stack content and visual on tablets */
        align-items: center;
    }

    .branding-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .branding-title {
        text-align: center;
        width: 100%;
    }

    .branding-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .branding-visual-panel {
        width: 100%;
    }

    .collateral-logo,
    .collateral-mockups {
        width: calc(50% - 15px); /* Adjust width for better fit on tablets */
    }

    /* Adjust sub-section items for tablets */
    .branding-sub-sections {
        justify-content: center; /* Center cards when they wrap */
    }
    .sub-section-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
    }
}

@media (max-width: 768px) {
    .branding-container {
        padding: 20px;
    }

    .branding-hero-section {
        padding: 40px 0;
    }

    .branding-title {
        font-size: 2.2em;
    }

    /* Sub-section items stack on smaller phones */
    .branding-sub-sections {
        flex-direction: column; /* Stack vertically on small screens */
        gap: 20px;
        align-items: center; /* Center stacked items */
    }
    .sub-section-item {
        flex: 1 1 90%; /* Take almost full width */
        max-width: 400px; /* Keep a max-width for readability */
    }


    .details-grid {
        grid-template-columns: 1fr; /* Stack details on smaller screens */
        gap: 25px;
    }

    .collateral-logo,
    .collateral-mockups {
        width: 90%; /* Stack collateral images vertically */
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .branding-title {
        font-size: 1.8em;
    }
    .sub-section-title {
        font-size: 1.1em;
    }
    .sub-section-description,
    .detail-description {
        font-size: 0.85em;
    }
}

/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* === Project CTA Section === */
.project-cta {
  background: linear-gradient(rgba(57, 142, 140, 0.85)), 
              url('/assets/images/contact.jpg') no-repeat center center/cover;
  min-height: 350px;
  padding: 60px 20px;
  position: relative;
  font-family: 'Futura', sans-serif;
}

.project-cta .cta-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}

.project-cta .cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.project-cta .cta-text {
  font-size: 1.1rem;
  color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
  .project-cta {
    padding: 40px 10px;
  }

  .project-cta .cta-title {
    font-size: 2rem;
  }

  .project-cta .cta-subtitle,
  .project-cta .cta-text {
    font-size: 1rem;
  }
}
.project-cta .container {
  animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.our-services-section {
  padding: 40px 40px;
  margin-bottom:20px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: black;
  font-family: 'Futura', sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin: 0 auto 60px;
}

.section-heading::after {
  content: '';
  width: 80px;
  height: 3px;
  background-color: #e61c71;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.services-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  width: 180px;
  text-align: center;
  font-family: 'Futura', sans-serif;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card h4 {
  color: #e61c71;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card.up {
  transform: translateY(-30px);
}

.service-card.down {
  transform: translateY(30px);
}

/* Bubbles */
.bubble-animation::before,
.bubble-animation::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: floatBubble 8s infinite ease-in-out;
  z-index: 1;
}

.bubble-animation::before {
  width: 100px;
  height: 100px;
  background-color: #398e8c;
  left: 10%;
  top: 40%;
}

.bubble-animation::after {
  width: 80px;
  height: 80px;
  background-color: #f7c958;
  right: 15%;
  top: 30%;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
}
@media screen and (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 80%;
    max-width: 300px;
    transform: none !important;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .section-heading {
    font-size: 24px;
  }

  .service-card img {
    height: 250px;
  }
}

/*about us page */

.about-section {
  background: #fff;
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 420px;
}

.about-left h2 {
  color: #2a7a6c;
  font-size: 26px;
  margin-bottom: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #2a7a6c;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  min-width: 200px;
}

.box {
  background: #f9f9f9;
  padding: 20px 25px;
  border-left: 4px solid #e680a7;
  border-radius: 6px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.box h3 {
  font-size: 18px;
  color: #2a7a6c;
  margin-bottom: 10px;
  position: relative;
}

.box h3::after {
  content: '';
  height: 2px;
  width: 40px;
  background: #f25b96;
  display: block;
  margin-top: 8px;
}

.box p {
  font-size: 15px;
  line-height: 1.6;
  color: #2a7a6c;
}

/* Bubbles Animation */
.bubble-decoration::before,
.bubble-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: move 6s infinite ease-in-out alternate;
  z-index: 0;
}

.bubble-decoration::before {
  width: 120px;
  height: 120px;
  background: #398e8c;
  top: 10%;
  left: 5%;
}

.bubble-decoration::after {
  width: 90px;
  height: 90px;
  background: #f7c958;
  bottom: 15%;
  right: 10%;
}

@keyframes move {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-right {
    gap: 30px;
  }

  .about-left h2, .box h3 {
    text-align: center;
  }

  .about-left, .about-right {
    text-align: center;
  }
}
/*Contact page*/

.contact-section {
  position: relative;
  padding: 60px 30px;
  background: #fefefe;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-form h2,
.contact-info h2 {
  color: #178a7a;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #398e8c;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e680a7;
  outline: none;
  box-shadow: 0 0 8px rgba(230, 128, 167, 0.3);
}

.contact-form button {
  background-color: #398e8c;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #2f716d;
}

.contact-info p {
  font-size: 15px;
  color: #333;
  margin: 15px 0;
}

.contact-info a {
  color: #178a7a;
  text-decoration: none;
}

.contact-info a:hover {
  color: #e680a7;
  text-decoration: underline;
}

/* Bubbles Animation */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  animation: float 10s infinite ease-in-out;
}

.bubble1 {
  width: 120px;
  height: 120px;
  background-color: #398e8c;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.bubble2 {
  width: 80px;
  height: 80px;
  background-color: #f7c958;
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

.bubble3 {
  width: 100px;
  height: 100px;
  background-color: #e680a7;
  top: 50%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(20deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form, .contact-info {
    width: 100%;
  }
}
/*Service details page*/

    .branding-section {
      position: relative;
      background: url('bg-pattern.png'); /* replace with correct path */
      background-size: cover;
      padding: 60px 30px;
    }
    .branding-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1300px;
      margin: auto;
      align-items: flex-start;
      gap: 20px;
    }
    .branding-left {
      flex: 1;
      min-width: 300px;
    }
    .branding-left h2 {
      font-size: 36px;
      color: #13717E;
      margin-bottom: 30px;
    }
    .branding-left .branding-block {
      margin-bottom: 20px;
    }
    .branding-left .branding-block h4 {
      color: #e4006f;
      font-size: 16px;
      margin-bottom: 8px;
    }
    .branding-left .branding-block:nth-child(3) h4 {
      color: #13717E;
    }
    .branding-left .branding-block:nth-child(4) h4 {
      color: #C92C70;
    }
    .branding-left .branding-block p {
      font-size: 14px;
      line-height: 1.6;
    }
    .branding-center {
      flex: 1.5;
      min-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .branding-center img.top-image {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .branding-bottom-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .branding-bottom-row .block {
      flex: 1;
      min-width: 220px;
    }
    .branding-bottom-row .block h4 {
      color: #C92C70;
      font-size: 16px;
      margin-bottom: 10px;
    }
    .branding-bottom-row .block:nth-child(3) h4 {
      color: #21B573;
    }
    .branding-bottom-row .block:nth-child(4) h4 {
      color: #13B5AF;
    }
    .branding-bottom-row .block p {
      font-size: 14px;
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .branding-container {
        flex-direction: column;
        align-items: center;
      }
      .branding-center,
      .branding-left {
        text-align: center;
      }
      .branding-bottom-row {
        flex-direction: column;
        align-items: center;
      }
    }
    


/* Bubbles for Services Overview Section */
.services-overview::before,
.services-overview::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    /* INCREASE THIS OPACITY SLIGHTLY */
    opacity: 0.15; /* More visible than body bubbles */
}

/* Bubbles for Reasons To Choose Section */
.reasons-to-choose::before,
.reasons-to-choose::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    /* INCREASE THIS OPACITY SLIGHTLY */
    opacity: 0.12;
}

/* ... (rest of your CSS) ... */
/* Reusable Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative; /* For subtle text animation */
    overflow: hidden; /* Hide overflowing text animation */
}

.btn-primary {
    background-color: #008080; /* Teal/Aqua */
    color: #fff;
    border: 2px solid #008080;
}

.btn-primary:hover {
    background-color: #006666; /* Darker Teal */
    border-color: #006666;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
}

.btn-secondary {
    background-color: #FF8C00; /* Orange/Yellow */
    color: #fff;
    border: 2px solid #FF8C00;
}

.btn-secondary:hover {
    background-color: #CC7000; /* Darker Orange */
    border-color: #CC7000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 140, 0, 0.2);
}

.btn i {
    margin-left: 8px; /* Space for icon */
    transition: transform 0.3s ease;
}

/* Optional: Subtle button text animation */
.btn:hover i {
    transform: translateX(3px); /* Slide icon slightly */
}



/* --- Events Hero Section --- */
.events-hero-section {
    background: linear-gradient(to right, rgba(0, 128, 128, 0.9), rgba(255, 140, 0, 0.8)), url('../assets/images/events2.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

/* ... (rest of your existing CSS for other sections) ... */

.events-hero-section h1 {
    font-size: 4em; /* Even larger, more impactful heading */
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4); /* Stronger shadow */
    line-height: 1.1;
    letter-spacing: 1px;
}

.events-hero-section p {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* --- Section Separator --- */
.section-separator {
    height: 60px; /* Height of the separator */
    position: relative;
    overflow: hidden;
    z-index: 0; /* Behind main content sections */
}

.section-separator.primary-bg {
    background-color: #008080; /* Teal/Aqua background */
}

.section-separator.secondary-bg {
    background-color: #FF8C00; /* Orange/Yellow background */
}

.section-separator::before {
    content: '';
    position: absolute;
    top: -30px; /* Adjust to control the slant angle/offset */
    left: -5%; /* Ensure full width coverage */
    width: 110%;
    height: 100px; /* Height of the slanted part */
    background-color: #F8F8F8; /* Matches body background */
    transform: rotate(2deg); /* Slant angle */
    transform-origin: top left;
    z-index: 1;
}

.section-separator::after {
    content: '';
    position: absolute;
    bottom: -30px; /* Adjust to control the slant angle/offset */
    right: -5%; /* Ensure full width coverage */
    width: 110%;
    height: 100px;
    background-color: #F8F8F8; /* Matches body background */
    transform: rotate(2deg); /* Slant angle */
    transform-origin: bottom right;
    z-index: 1;
}

/* Invert slant for some separators if desired */
.section-separator.secondary-bg::before {
    transform: rotate(-2deg); /* Slant in opposite direction */
    transform-origin: top right;
    left: auto; /* Reset left */
    right: -5%; /* Align to right */
}

.section-separator.secondary-bg::after {
    transform: rotate(-2deg); /* Slant in opposite direction */
    transform-origin: bottom left;
    right: auto; /* Reset right */
    left: -5%; /* Align to left */
}


/* --- Services Overview Section (Grid Layout) --- */
.services-overview {
    padding: 80px 0; /* More padding */
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    position: relative; /* For z-index with separator */
    z-index: 2; /* Ensure content is above separator */
}

.services-overview h2 {
    text-align: center;
    color: #FF8C00;
    font-size: 3em; /* Larger heading */
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px; /* Wider underline */
    height: 5px;
    background-color: #008080;
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Individual Service Item Styling within the grid */
.service-item {
    background: #FDFDFD;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden; /* For inner elements */
}

.service-item:hover {
    transform: translateY(-10px); /* More pronounced lift */
    box-shadow: 0 15px 30px rgba(0,0,0,0.18); /* Stronger shadow */
    background-color: #fff;
    border-color: #008080; /* Highlight border on hover */
}

.icon-wrapper {
    font-size: 4em; /* Larger icons */
    color: #4A9D9A;
    margin-bottom: 20px;
    line-height: 1;
    transition: color 0.3s ease-in-out;
}

.service-item:hover .icon-wrapper {
    color: #D97904; /* Change icon color on hover */
}

.service-item h3 {
    color: #008080;
    font-size: 2em; /* Larger titles */
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-item p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.7;
}

/* --- Reasons To Choose Section --- */
.reasons-to-choose {
    background-color: #F0F5F8; /* A light, cool background color */
    padding: 70px 0;
    text-align: center;
    position: relative;
    z-index: 2; /* Above separator */
}

.reasons-to-choose h2 {
    color: #008080;
    font-size: 2.8em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.reasons-to-choose h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 3px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    background-color: #fcfcfc;
}

.reason-item i {
    font-size: 3.5em; /* Larger icons */
    color: #D97904;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
    
}

.reason-item:hover i {
   color: #FF8C00; /* Icon color change on hover */
}

.reason-item h3 {
    color: #008080;
    font-size: 1.6em; /* Slightly larger heading */
    margin-bottom: 10px;
}

.reason-item p {
    color: #666;
    font-size: 1em; /* Slightly larger text */
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .events-hero-section h1 {
        font-size: 3.2em;
    }
    .events-hero-section p {
        font-size: 1.2em;
    }
    .services-overview h2, .cta-banner h2, .reasons-to-choose h2 {
        font-size: 2.5em;
    }
    .service-item h3 {
        font-size: 1.8em;
    }
    .icon-wrapper {
        font-size: 3.5em;
    }
    .reasons-item i {
        font-size: 3em;
    }
    .section-separator {
        height: 50px;
    }
    .section-separator::before, .section-separator::after {
        top: -25px;
        bottom: -25px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .events-hero-section {
        padding: 80px 0;
    }
    .events-hero-section h1 {
        font-size: 2.8em;
    }
    .events-hero-section p {
        font-size: 1.1em;
    }
    .services-overview h2, .cta-banner h2, .reasons-to-choose h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    .services-grid, .reasons-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }
    .service-item, .reason-item {
        padding: 30px;
    }
    .icon-wrapper {
        font-size: 3em;
    }
    .cta-banner {
        padding: 60px 0;
    }
    .cta-banner p {
        font-size: 1.1em;
    }
    .section-separator {
        height: 40px;
    }
    .section-separator::before, .section-separator::after {
        top: -20px;
        bottom: -20px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .events-hero-section h1 {
        font-size: 2.2em;
    }
    .events-hero-section p {
        font-size: 1em;
    }
    .services-overview h2, .cta-banner h2, .reasons-to-choose h2 {
        font-size: 1.9em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .service-item h3 {
        font-size: 1.6em;
    }
    .icon-wrapper {
        font-size: 2.8em;
    }
    .reason-item i {
        font-size: 2.5em;
    }
    .section-separator {
        height: 30px;
    }
    .section-separator::before, .section-separator::after {
        top: -15px;
        bottom: -15px;
        height: 60px;
    }
}

/* --- Client Showcase Section (for Video Productions and Branding pages) --- */
.client-showcase {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background to make it stand out */
    text-align: center;
    position: relative; /* Important for positioning bubbles */
    overflow: hidden;   /* Important for clipping bubbles */
}

.client-showcase h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.client-showcase .section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.view-project-btn {
    display: inline-block;
    background-color: #20c997; /* Your primary color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto; /* Pushes button to the bottom */
}

.view-project-btn:hover {
    background-color: #1a9c7d;
    transform: translateY(-2px);
}

.view-project-btn i {
    margin-left: 8px;
}

/* Bubble effects for the client-showcase section (ensure these are present) */
.client-showcase::before,
.client-showcase::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.08; /* Subtle bubbles for this section */
}

.client-showcase::before {
    width: 400px;
    height: 400px;
    top: -80px;
    left: -150px;
    background-color: rgba(0, 128, 128, 0.08); /* Teal bubble */
    transform: rotate(20deg);
}

.client-showcase::after {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -120px;
    background-color: rgba(255, 140, 0, 0.08); /* Orange bubble */
    transform: rotate(-30deg);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .client-showcase h2 {
        font-size: 2em;
    }
}


/* --- Contact Info Section --- */
.contact-info-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.contact-info-section h2 {
    font-size: 2.5em;
    color: #FF8C00; /* Orange accent */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #008080; /* Teal underline */
    border-radius: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    background: #FDFDFD;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.info-item i {
    font-size: 3em;
    color: #008080; /* Teal icon */
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.info-item a {
    color: #008080; /* Teal link color */
    text-decoration: none;
    font-weight: bold;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Bubbles for Contact Info Section */
.contact-info-section::before,
.contact-info-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.08;
}

.contact-info-section::before {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    background-color: rgba(255, 140, 0, 0.08); /* Orange bubble */
    transform: rotate(15deg);
}

.contact-info-section::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    background-color: rgba(0, 128, 128, 0.08); /* Teal bubble */
    transform: rotate(-20deg);
}


/* --- Contact Form Section --- */
.contact-form-section {
    padding: 60px 0;
    background-color: #F0F5F8; /* Light background for contrast */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-form-section h2 {
    font-size: 2.5em;
    color: #008080; /* Teal accent */
    margin-bottom: 15px;
}

.contact-form-section .section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px; /* Max width for the form itself */
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left; /* Align form elements to the left */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block; /* Make labels take full width */
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px; /* Rounded corners for inputs */
    font-size: 1em;
    color: #333;
    background-color: #fcfcfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #008080; /* Teal border on focus */
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.2); /* Subtle teal glow on focus */
    outline: none; /* Remove default outline */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 120px;
}

.form-submit-btn {
    width: auto; /* Allow button to size naturally */
    padding: 14px 30px; /* Larger padding for submit button */
    font-size: 1.1em;
    margin-top: 20px; /* Space above button */
}

/* Bubbles for Contact Form Section */
.contact-form-section::before,
.contact-form-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    opacity: 0.08;
}

.contact-form-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
    background-color: rgba(0, 128, 128, 0.08); /* Teal bubble */
    transform: rotate(-10deg);
}

.contact-form-section::after {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -100px;
    background-color: rgba(255, 140, 0, 0.08); /* Orange bubble */
    transform: rotate(25deg);
}

/* Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Stack info items on small screens */
    }
    .contact-form {
        padding: 25px;
    }
    .form-submit-btn {
        width: 100%; /* Full width button on small screens */
    }
}


/* --- Thank You Page Section --- */
.thank-you-section {
    padding: 80px 0;
    background-color: #f0f5f8;
    color: #333;
    min-height: 70vh; /* Ensure it takes up most of the viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-section .container {
    max-width: 800px;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.thank-you-section .check-icon {
    font-size: 5em;
    color: #20c997; /* A bright green for success */
    margin-bottom: 25px;
    animation: bounceIn 0.8s ease-out;
}

.thank-you-section h1 {
    font-size: 3em;
    color: #008080; /* Teal for main heading */
    margin-bottom: 20px;
}

.thank-you-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Animation for the checkmark */
@keyframes bounceIn {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 50px 0;
    }
    .thank-you-section .container {
        padding: 30px 20px;
    }
    .thank-you-section h1 {
        font-size: 2.2em;
    }
    .thank-you-section .check-icon {
        font-size: 4em;
    }
    .thank-you-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px; /* Add space between stacked buttons */
        margin-left: 0 !important; /* Override ms-3 on small screens */
    }
}




/* ===================================================================
   MAIN STYLESHEET
   Description: Redesigned styles for the Exile Nest homepage.
   =================================================================== */

/* ========== 1. GLOBAL VARIABLES & RESETS ========== */
:root {
    --en-color-primary-teal: #398e8c;
    --en-color-accent-orange: #f7c958;
    --en-color-accent-magenta: #e680a7;
    --en-color-dark: #1a1a1a;
    --en-color-text: #555555;
    --en-color-light-gray: #f8f9fa;
    --en-color-white: #ffffff;
    --en-font-primary: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--en-font-primary);
    color: var(--en-color-text);
    background-color: var(--en-color-white);
    line-height: 1.6;
    overflow-x: hidden; /* Prevents horizontal scroll from shadows */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--en-color-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ======================================================= */
/* START: New CSS for Redesigned Hero Section              */
/* ======================================================= */

.new-hero-section {
    background-color: #f7f9fc;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.6;
}

.hero-bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(57, 142, 140, 0.2); /* Teal */
    top: -50px;
    left: -100px;
    animation: drift 22s infinite linear alternate;
}

.hero-bg-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(247, 201, 88, 0.2); /* Orange/Yellow */
    bottom: -100px;
    right: -150px;
    animation: drift 28s infinite linear alternate-reverse;
}

.hero-bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(230, 128, 167, 0.15); /* Magenta */
    bottom: 40%;
    left: 20%;
    animation: drift 35s infinite linear alternate;
}

@keyframes drift {
    from {
        transform: translateY(-20px) translateX(20px) rotate(0deg) scale(1);
    }
    to {
        transform: translateY(20px) translateX(-20px) rotate(120deg) scale(1.2);
    }
}

.new-hero-content {
    position: relative;
    z-index: 2;
    animation: fade-in 1.5s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.new-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.new-hero-content p {
    font-size: 1.3rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.new-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary {
    background-color: #398e8c;
    color: #fff;
    border: 1px solid #398e8c;
}

.hero-btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.new-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #555;
    font-size: 1.8rem;
    z-index: 2;
    animation: bounce-indicator 2s infinite ease-in-out;
}

@keyframes bounce-indicator {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Responsive styles */
@media (max-width: 768px) {
    .new-hero-content h1 { font-size: 2.8rem; }
    .new-hero-content p { font-size: 1.1rem; }
    .new-hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn { width: 100%; max-width: 280px; }
}

/* ======================================================= */
/* END: New CSS for Redesigned Hero Section                */
/* ======================================================= */


/* ========== 4. FEATURED SERVICES SECTION ========== */
.en-featured-services-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(105deg, var(--en-color-primary-teal), var(--en-color-accent-orange));
    position: relative; /* Required for positioning the new dynamic shapes */
    overflow: hidden;   /* Keeps the shapes contained */
}

/* NEW: Dynamic floating shapes for the background */
.en-featured-services-section::before,
.en-featured-services-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Creates a very soft, blob-like effect */
    z-index: 1; /* Positioned behind cards but above the main background */
    animation: float 20s infinite linear alternate;
}

.en-featured-services-section::before {
    width: 400px;
    height: 400px;
    background-color: rgba(230, 128, 167, 0.3); /* Semi-transparent Magenta */
    top: -100px;
    left: -150px;
}

.en-featured-services-section::after {
    width: 350px;
    height: 350px;
    background-color: rgba(57, 142, 140, 0.4); /* Semi-transparent Teal */
    bottom: -120px;
    right: -100px;
    animation-duration: 25s; /* Different duration for varied movement */
    animation-delay: -5s;
}

/* Keyframes for the floating animation */
@keyframes float {
    from {
        transform: translateY(-20px) translateX(20px) rotate(0deg);
    }
    to {
        transform: translateY(20px) translateX(-20px) rotate(180deg);
    }
}

.en-section-title-white,
.en-section-description-white,
.en-services-grid-container,
.en-btn-view-all {
    position: relative;
    z-index: 2; /* Ensures content is on top of the floating shapes */
}

.en-section-title-white {
    font-size: 2.5rem;
    color: var(--en-color-white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

.en-section-description-white {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 15px auto 60px auto;
}

.en-services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* UPDATED: Enhanced Card Styling */
.en-service-card-item {
    background-color: rgba(255, 255, 255, 0.98); /* Slightly more opaque */
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative; /* Required for the shine effect */
    overflow: hidden;   /* Contains the shine effect */
}
.en-service-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* NEW: Shine effect on hover */
.en-service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.en-service-card-item:hover::before {
    left: 125%;
}

.en-service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--en-color-primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}
.en-service-card-item:hover .en-service-icon-circle {
    background-color: var(--en-color-accent-magenta);
}

.en-service-icon-circle i {
    font-size: 2.8rem;
    color: var(--en-color-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth animation */
}

/* NEW: Icon animation on hover */
.en-service-card-item:hover .en-service-icon-circle i {
    transform: scale(1.15) rotate(15deg);
}

.en-service-card-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.en-service-card-item p {
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 25px;
}

.en-service-link {
    background: var(--en-color-primary-teal);
    color: var(--en-color-white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}
.en-service-link:hover {
    background: var(--en-color-dark);
}

.en-btn-view-all {
    margin-top: 60px;
    color: var(--en-color-white);
    border: 2px solid var(--en-color-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}
.en-btn-view-all:hover {
    background-color: var(--en-color-white);
    color: var(--en-color-dark);
}






/* ========== 5. GLOBAL CTA SECTION ========== */
.en-global-cta-section {
    padding: 100px 0;
    text-align: center;
    /* UPDATED: Gradient now perfectly matches the section above */
    background: linear-gradient(105deg, var(--en-color-primary-teal), var(--en-color-accent-orange));
    color: var(--en-color-white); /* Default text color for the section */
}

.en-cta-main-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--en-color-white); 
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.en-cta-sub-paragraph {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.en-btn-cta-contact {
    background-color: var(--en-color-white);
    color: var(--en-color-primary-teal);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
}
.en-btn-cta-contact:hover {
    background-color: var(--en-color-light-gray);
    color: var(--en-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



/* ========== 6. RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    h1, .en-hero-title { font-size: 3.5rem; }
    h2, .en-section-title, .en-section-title-white, .en-cta-main-heading { font-size: 2.2rem; }

    .en-about-section .row {
        flex-direction: column-reverse !important; /* Stack image and content */
    }
    .en-about-image-column {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    h1, .en-hero-title { font-size: 2.8rem; }
    h2, .en-section-title, .en-section-title-white, .en-cta-main-heading { font-size: 2rem; }
    .en-hero-subtitle { font-size: 1.2rem; }

    .en-hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .en-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .en-about-content-column {
        text-align: center;
    }
}





/* ======================================================= */
/* 11. FIXES & INTERNAL PAGE STYLES (EVENTS, BRANDING)     */
/* ======================================================= */

/*
 * ROBUST FIX for Dropdown Menu
 * This ensures the main navigation bar and its dropdowns always
 * appear on top of all other page content.
*/
.main-header {
    position: relative;
    z-index: 1030; /* High z-index to ensure it's on top */
}

/* --- Reusable Styles for Internal Pages --- */

/* Hero Section for Events, Branding, etc. */
.events-hero-section {
    background: linear-gradient(to right, rgba(57, 142, 140, 0.9), rgba(74, 157, 154, 0.8)), url('../assets/images/events2.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.1);
}

.events-hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    line-height: 1.1;
    letter-spacing: 1px;
    color: #fff; /* Ensure heading color is white */
}

.events-hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* Section Separators */
.section-separator {
    height: 60px;
    position: relative;
    overflow: hidden;
}
.section-separator.primary-bg { background-color: #398e8c; }
.section-separator.secondary-bg { background-color: #4A9D9A; } /* UPDATED COLOR */

/* Services Overview Section (Used on both pages) */
.services-overview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services-overview h2 {
    text-align: center;
    color: #4A9D9A; /* UPDATED COLOR */
    font-size: 2.8em;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background-color: #398e8c;
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.icon-wrapper {
    font-size: 3.5em;
    color: #4A9D9A; /* UPDATED COLOR */
    margin-bottom: 20px;
}

.service-item h3 {
    color: #398e8c;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
}

/* Reasons to Choose Section (Used on both pages) */
.reasons-to-choose {
    background-color: #f0f5f8;
    padding: 70px 0;
    text-align: center;
}

.reasons-to-choose h2 {
    color: #398e8c;
    font-size: 2.8em;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;
}

.reason-item i {
    font-size: 3.5em;
    color: #4A9D9A; /* UPDATED COLOR */
    margin-bottom: 15px;
}

.reason-item h3 {
    color: #398e8c;
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* ======================================================= */
/* 11. FIXES & INTERNAL PAGE STYLES (EVENTS, BRANDING)     */
/* ======================================================= */

/*
 * ROBUST FIX for Dropdown Menu
 * This ensures the main navigation bar and its dropdowns always
 * appear on top of all other page content.
*/
.main-header {
    position: relative;
    z-index: 1030; /* High z-index to ensure it's on top */
}

/* --- Reusable Styles for Internal Pages --- */

/* Hero Section for Events, Branding, etc. */
.events-hero-section {
    /* UPDATED: Gradient now matches the homepage hero */
    background: linear-gradient(105deg, #398e8c, #f7c958);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.15);
}

/* Hiding the old background shapes as they are not needed with the new gradient */
.hero-bg-shape {
    display: none;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    animation: fade-in 1.5s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.new-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff; /* UPDATED: White text for readability */
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.new-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9); /* UPDATED: Light text for readability */
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.new-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* UPDATED: Primary button style for dark background */
.hero-btn-primary {
    background-color: #ffffff;
    color: #398e8c;
    border: 1px solid #ffffff;
}
.hero-btn-primary:hover {
    background-color: #f0f0f0;
}


/* UPDATED: Secondary button style for dark background */
.hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.new-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff; /* UPDATED: White icon */
    font-size: 1.8rem;
    z-index: 2;
    animation: bounce-indicator 2s infinite ease-in-out;
}

@keyframes bounce-indicator {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Responsive styles */
@media (max-width: 768px) {
    .new-hero-content h1 { font-size: 2.8rem; }
    .new-hero-content p { font-size: 1.1rem; }
    .new-hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn { width: 100%; max-width: 280px; }
}

/* ======================================================= */
/* END: New CSS for Redesigned Hero Section                */
/* ======================================================= */


/* Section Separators */
.section-separator {
    height: 60px;
    position: relative;
    overflow: hidden;
}
.section-separator.primary-bg { background-color: #398e8c; }
.section-separator.secondary-bg { background-color: #4A9D9A; } /* UPDATED COLOR */

/* Services Overview Section (Used on both pages) *//* Services Overview Section (Used on both pages) */
.services-overview {
    padding: 80px 0;
    background-color: #f0f5f8; /* NEW: Light gray background */
}

.services-overview h2 {
    text-align: center;
    color: #398e8c; /* UPDATED: Primary brand teal for the main heading */
    font-size: 2.8em;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background-color: #398e8c;
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: #ffffff; /* White cards look good on the new gray background */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    font-size: 3.5em;
    color: #4A9D9A; /* KEPT: Muted teal for icons as requested */
    margin-bottom: 20px;
}

.service-item h3 {
    color: #398e8c; /* UPDATED: Primary brand teal for card titles */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
}


/* Reasons to Choose Section (Used on both pages) */
.reasons-to-choose {
    background-color: #f0f5f8;
    padding: 70px 0;
    text-align: center;
}

.reasons-to-choose h2 {
    color: #398e8c;
    font-size: 2.8em;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    text-align: center;
}

.reason-item i {
    font-size: 3.5em;
    color: #4A9D9A; /* UPDATED COLOR */
    margin-bottom: 15px;
}

.reason-item h3 {
    color: #398e8c;
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* CTA Banner (Used on both pages) */
.cta-banner {
    background-color:#398e8c;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.cta-banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}






















/* ======================================================= */
/* 14. ALL SERVICES PAGE STYLES                            */
/* ======================================================= */

.all-services-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* A light, clean background */
}

.section-heading {
    text-align: center;
    font-size: 2.8rem;
    color: var(--en-color-dark);
    margin-bottom: 15px;
}

.section-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: var(--en-color-text);
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Makes the whole area of the link clickable */
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    height: 100%; /* Ensures all cards have the same height */
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--en-color-primary-teal);
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--en-color-primary-teal);
    margin-bottom: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
    color: #D97904; /* The deep orange for hover */
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--en-color-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--en-color-text);
}

/* Responsive styles for the services page */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2.2rem;
    }
    .all-services-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }
}
























/* ======================================================= */
/* 15. ABOUT US PAGE STYLES                                */
/* ======================================================= */

.about-us-content-grid {
    display: grid;
    /* This creates three equal columns on larger screens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-us-text-block {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.about-us-text-block h3 {
    font-size: 1.8em;
    color: #398e8c;
    margin-bottom: 15px;
}

.about-us-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}




/* Section: About Us Banner */
    .section-about-banner {
      position: relative;
      background: url('/assets/images/about_banner.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
     .section-branding-banner {
      position: relative;
      background: url('/assets/images/4.jpeg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-branding-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
/* ======================================================= */
/* Web_designing_banner PAGE STYLES                                */
/* ======================================================= */
    
    .section-web-designing-banner {
      position: relative;
      background: url('/assets/images/Web_designing_banner.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-web-designing-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
      .section-contact-banner {
      position: relative;
      background: url('/assets/images/contact_banner.jpg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-contact-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
/* ======================================================= */
/* 360 solutions-360 PAGE STYLES                                */
/* ======================================================= */

.section-360-solutions-banner {
      position: relative;
      background: url('/assets/images/360_deg_solution.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-360-solutions-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
/* ======================================================= */
/* Digital Marketing PAGE STYLES                                */
/* ======================================================= */

.section-dm-banner {
      position: relative;
      background: url('/assets/images/Digital_Marketing_banner.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-dm-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
/* ======================================================= */
/* Digital Marketing PAGE STYLES                                */
/* ======================================================= */

.section-int-trade-banner {
      position: relative;
      background: url('/assets/images/International_trade_banner.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-int-trade-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
/* ======================================================= */
/* Consultancy PAGE STYLES                                */
/* ======================================================= */

.section-consultancy-banner {
      position: relative;
      background: url('/assets/images/events1.jpg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-consultancy-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
/* ======================================================= */
/* Events PAGE STYLES                                */
/* ======================================================= */

.section-events-banner {
      position: relative;
      background: url('/assets/images/Event_Management_Slider_Image.webp') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .section-events-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.7);
      z-index: 1;
    }
    
    

    .section-about-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(74, 157, 154, 0.5);
      z-index: 1;
    }

    .about-banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: fadeInUp 1.4s ease;
    }

    .about-banner-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color:white;
    }

    .about-breadcrumbs {
      font-size: 1rem;
      margin-top: 10px;
    }

    .about-breadcrumbs a {
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .about-breadcrumbs a:hover {
      color: #f0db4f;
      text-decoration: underline;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .section-about-banner {
        height: 45vh;
      }

      .about-banner-content h1 {
        font-size: 2.4rem;
      }
    }
.image-showcase {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f9f9f9, #e8f1f1);
}

.image-container {
  max-width: 1100px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.showcase-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Animation */
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .image-showcase {
    padding: 20px;
  }
}
.contact-form-section{
    background: url('/assets/images/contact/contactus banner 2.webp') no-repeat center center/cover;
}
.cta-banner{
    background: url('/assets/images/partner_CTA _overlay.webp') no-repeat center center/cover;
}
@media (max-width: 768px) {
  .contact-forms {
    width:90%!Important;
    margin-left:20px!Important;
  }
}
.contact-forms {
    width:90%;
    margin-left:200px;
  }
  
    /* Banner Section */
    .banner {
      position: relative;
      width: 100%;
      height: 100vh; /* Full screen height */
      background: url('/assets/images/technology_transfer.webp') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }



    /* Animated floating effect for banner image */
    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      animation: fadeInUp 2s ease-out;
    }

    .banner-content h1 {
      font-size: 3rem;
      color:#398e8c;
    }

    .banner-content p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      animation: fadeIn 3s ease-in;
    }

    /* Section below */
    .content {
      padding: 60px 20px;
      text-align: center;
      background: #fff;
      box-shadow: 0px -4px 10px rgba(0,0,0,0.1);
    }

    .content h2 {
      font-size: 2.3rem;
      margin-bottom: 20px;
      color: #398e8c;
      animation: fadeInUp 1s ease-out;
    }

    .content p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
      color: #444;
      animation: fadeInUp 2s ease-out;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .banner-content h1 {
        font-size: 2.2rem;
      }
      .banner-content p {
        font-size: 1rem;
        padding: 0 10px;
      }
      .content h2 {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .banner {
        height: 70vh;
      }
      .banner-content h1 {
        font-size: 1.8rem;
      }
      .banner-content p {
        font-size: 0.9rem;
      }
    }
 .container.counter {
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: center;       /* Center vertically */
  text-align: center;
}
    .visitor-counter {
      background: linear-gradient(135deg, #4A9D9A, #357376);
      color: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      text-align: center;
      transition: transform 0.3s ease;
      width: 350px;              /* Fixed width for larger screens */
      max-width: 90%;            /* Responsive for smaller screens */
      margin-bottom:50px;
    }

    .visitor-counter:hover {
      transform: scale(1.05);
    }

    .visitor-counter h2 {
      font-size: 1.5rem;
      margin: 0;
      color: #FFD166;            /* Gold accent for title */
    }

    .visitor-counter span {
      display: block;
      font-size: 2.5rem;
      margin-top: 8px;
      font-weight: bold;
    }