  /* Navbar Container */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        /* Logo */
        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #FA0000, #667EEA);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link:hover {
            color: #fff;
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }
        .nav-link:hover{
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }

        /* Dropdown Arrow */
        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .nav-item.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            overflow: hidden;
        }

        .nav-item:hover .dropdown,
        .nav-item.active .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
           background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
            padding-left: 25px;
            border-left-color: #667eea;
            color: #fff;
        }
        .dropdown-item:active{
            background: linear-gradient(90deg,rgba(250, 0, 0, 0.24) 0%, rgba(102, 126, 234, 0.21) 100%);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -8px);
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            .nav-container {
                height: 60px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 15px 20px;
                border-radius: 0;
                justify-content: center;
            }

            .nav-link::before {
                display: none;
            }

            .dropdown {
                position: static;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                opacity: 1;
                visibility: visible;
                margin-top: 0;
                background: rgba(102, 126, 234, 0.05);
                display: none;
            }

            .nav-item.active .dropdown {
                display: block;
            }

            .dropdown-item {
                padding: 12px 30px;
                border-left: none;
                border-bottom: 1px solid rgba(102, 126, 234, 0.1);
            }

            .dropdown-item:last-child {
                border-bottom: none;
            }

            .dropdown-item:hover {
                padding-left: 35px;
                background: rgba(102, 126, 234, 0.1);
            }
        }

        /* Demo Content */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .content h1 {
            color: white;
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Scroll Animation */
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        }
                      .santh-banner{
     background: url('../images-new/stanthorpebanner.webp') center/cover no-repeat; /* Replace with your image */
     
      height: 500px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

               .logo img {
            width: 160px;
            margin-top: 13px;
            
        }

/* Header Styles */
.site-header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Company Name */
.site-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.site-name .black {
  color: #111;
}

.site-name .red {
  color: #e60000;
}

/* Menu */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #e60000;
}

/* Responsive: mobile keeps name left, menu right */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;       /* row layout */
    justify-content: space-between; /* keep left/right alignment */
    align-items: center;
  }

  .main-nav ul {
    flex-direction: row;       /* keep menu horizontal */
    gap: 15px;
  }

  .main-nav ul li {
    margin-left: 0;
  }

  .site-name {
    font-size: 20px;
  }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       /* Header Styles */
.site-header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Company Name */
.site-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.site-name .black {
  color: #111;
}

.site-name .red {
  color: #e60000;
}

/* Menu */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #e60000;
}

/* Responsive: mobile keeps name left, menu right */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;       /* row layout */
    justify-content: space-between; /* keep left/right alignment */
    align-items: center;
  }

  .main-nav ul {
    flex-direction: row;       /* keep menu horizontal */
    gap: 15px;
  }

  .main-nav ul li {
    margin-left: 0;
  }

  .site-name {
    font-size: 20px;
  }
}


        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.8)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a90e2" width="1200" height="600"/><polygon fill="%23ffffff" opacity="0.1" points="0,600 400,300 800,450 1200,200 1200,600"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
                padding: 150px 0 100px 0;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s both;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .cta-button:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
        }
        .ftures-p{
            text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
       margin-bottom: 10px;

    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
        }
        .ftures-p-bold{
            text-align: center;
            font-weight:600;
    font-size: 1.2rem;
    color: #444;
    margin-top: 30px;
       margin-bottom: 10px;

    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #db3434;
            margin: 20px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #3498db;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .features-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
}

        .feature-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .ftures-p-item{
            text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-top: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
         .section-subtitle-pro{
             text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 20px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-subtitle-next{
             text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-item:hover {
            transform: translateX(10px);
        }

        .feature-icon {
            font-size: 2rem;
            margin-right: 20px;
            color: #3498db;
        }

        .feature-text h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .step h4 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            text-align: center;
        }

        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .contact-item h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .services-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
         /* CSS for Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, #fff0f0 0%, #fde8e8 100%);
            padding: 80px 0;
        }
        
        .testimonials .section-title {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid #db3434;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: #ff0000;
            font-family: Georgia, serif;
            opacity: 0.3;
        }
        
        .testimonial-content {
            font-style: italic;
            color: #555;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1rem;
        }
        
        .testimonial-location {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* CSS for FAQ Section */
        .faq-section {
            background: white;
            padding: 80px 0;
        }
        
        .faq-section .section-title {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #3498db;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
        }
        
        .faq-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background-color 0.3s ease;
        }
        
        .faq-header:hover {
            background: #f8f9fa;
        }
        
        .faq-item.active .faq-header {
               background: #db3434;
            color: white;
        }
        
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0;
            color: #2c3e50;
        }
        
        .faq-item.active .faq-question {
            color: white;
        }
        
        .faq-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: #db3434;
        }
        
        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: white;
        }
        
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-content {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }
        
        .faq-answer {
            color: #555;
            line-height: 1.6;
            margin: 0;
            padding-top: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .testimonials .section-title,
            .faq-section .section-title {
                font-size: 2rem;
            }
            
            .faq-container {
                padding: 0 1rem;
            }
            
            .faq-header {
                padding: 1rem;
            }
            
            .faq-question {
                font-size: 1rem;
                line-height: 1.4;
            }
        }
