
        :root {
            --primary: #1e3a5f;
            --secondary: #2c6e49;
            --accent: #355738;
            --light: #f8f9fa;
            --dark: #333;
            --white: #ffffff;
            --gray: #f2f2f2;
            --text-light: #666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 32px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            transition: 0.3s;
        }

        /* Hero Section with Unique Design */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(44, 110, 73, 0.8)), url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
            background-size: 100px 100px;
        }

        .hero-content {
            max-width: 700px;
            margin-left: 100px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .element-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .element-2 {
            width: 120px;
            height: 120px;
            bottom: 15%;
            right: 20%;
            animation-delay: 2s;
        }

        .element-3 {
            width: 60px;
            height: 60px;
            top: 50%;
            right: 30%;
            animation-delay: 4s;
        }

        /* About Section with Split Design */
        .about {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--white);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -30px;
            left: -30px;
            width: 100%;
            height: 100%;
            border: 5px solid var(--accent);
            border-radius: 20px;
            z-index: -1;
        }

        .about-content {
            flex: 1;
        }

        .about-badge {
            display: inline-block;
            background-color: rgba(44, 110, 73, 0.1);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-content h2 {
            font-size: 2.1rem;
            color: var(--primary);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 16px;
            text-align: justify;
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Why Choose Us with Card Flip Effect */
        .why-choose {
            padding: 120px 0;
            background-color: var(--gray);
            position: relative;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--gray);
            clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            display: inline-block;
            background-color: rgba(30, 58, 95, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
        }

        .reasons-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .reason-card {
            perspective: 1000px;
            height: 300px;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .reason-card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
        }

        .card-front {
            background-color: var(--white);
        }

        .card-back {
            background-color: var(--primary);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .card-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .card-back .card-icon {
            color: var(--white);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .card-back .card-title {
            color: var(--white);
        }

        .card-text {
            color: var(--text-light);
            font-size: 15px;
        }

        .card-back .card-text {
            color: rgba(255, 255, 255, 0.9);
        }

        

        /* FAQs Section with Accordion */
        .faqs {
            padding: 120px 0;
            background-color: var(--gray);
            position: relative;
        }

        .faqs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--gray);
            clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item.active {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--white);
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question {
            background-color: var(--primary);
            color: var(--white);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question h3 {
            color: var(--white);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent);
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            color: var(--white);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background-color: var(--white);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 20px;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Testimonials with Carousel */
        .testimonials {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--white);
            clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
        }

        .testimonial-carousel {
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-content {
            background-color: var(--gray);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: var(--accent);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
            border: 3px solid var(--accent);
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 14px;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gray);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-btn:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .testimonial-btn i {
            font-size: 1.2rem;
        }

        /* Blogs with Masonry Layout */
        .blogs {
            padding: 120px 0;
            background-color: var(--gray);
            position: relative;
        }

        .blogs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--gray);
            clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .blog-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--accent);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .blog-link:hover {
            margin-left: 5px;
        }

        .blog-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .blog-link:hover i {
            transform: translateX(3px);
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
            background-size: 100px 100px;
        }

        .contact-content {
            position: relative;
            z-index: 2;
        }

        .contact h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .contact p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-btn {
            background-color: var(--white);
            color: var(--primary);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .contact-btn i {
            margin-right: 10px;
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--white);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }

        .footer-column p {
            margin-bottom: 20px;
            color: #ddd;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--accent);
            margin-right: 15px;
            margin-top: 5px;
            font-size: 1.2rem;
        }

        .newsletter {
            margin-top: 20px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #e0a850;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                margin-bottom: 40px;
            }
            
            .stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-content {
                margin-left: 20px;
                margin-right: 20px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .service-hexagon {
                width: 200px;
                height: 220px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-content h2 {
                font-size: 2.2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 50px;
                padding: 12px 20px;
            }
        }








        /* New Services Section Styles */
.services-new {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}

.services-diagonal {
    position: relative;
    margin-top: 60px;
}

.services-container {
    position: relative;
    z-index: 2;
}

.service-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    transform: skewY(-3deg);
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-card {
    flex: 1;
    background-color: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    transform: skewY(3deg);
    position: relative;
}

.service-card:hover {
    transform: skewY(3deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-info {
    padding: 25px;
    text-align: center;
}

.service-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Decorative elements */
.services-diagonal::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(44, 110, 73, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-diagonal::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(30, 58, 95, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-row {
        flex-wrap: wrap;
    }
    
    .service-card {
        flex: 1 1 calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    .service-row {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .service-row {
        transform: none;
        gap: 20px;
    }
    
    .service-card {
        transform: none;
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .service-info {
        padding: 20px;
    }
    
    .service-info h3 {
        font-size: 1.2rem;
    }
    
    .service-info p {
        font-size: 14px;
    }
    
    .service-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}






.breadcrumb-section {
    background: #f5f7fa;
    padding: 200px 0;
    text-align: center;
    height: 200px;
}
.breadcrumb-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}
.breadcrumb-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}
.breadcrumb-nav ul li {
    margin: 0 5px;
}
.breadcrumb-nav ul li a {
    color: #355738;
    text-decoration: none;
    transition: 0.3s;
}
.breadcrumb-nav ul li a:hover {
    color: #2c3e50;
}
.breadcrumb-nav ul li.active {
    color: #7f8c8d;
    font-weight: 500;
}
.separator {
    color: #95a5a6;
}












/* Grid Layout */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Pricing Card */
.pricing-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Header Styling */
.pricing-header {
  padding: 1.8rem;
  text-align: center;
  color: #fff;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.pricing-header h4 {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
}

.pricing-header h4 sup {
  font-size: 0.9rem;
}

.pricing-header span {
  font-size: 0.9rem;
}

/* Gradient Headers */
.pricing-header.basic {
  background: linear-gradient(135deg, #3b82f6, #355738);
}

.pricing-header.standard {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.pricing-header.premium {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Tag */
.pricing-header .tag {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* Description */
.pricing-card .description {
  padding: 1.2rem;
  font-size: 0.95rem;
  color: #444;
  text-align: center;
  flex-grow: 0;
}

/* Features List */
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

.pricing-card ul li {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li.na {
  color: #bbb;
  text-decoration: line-through;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  margin: 1rem auto 1.5rem;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  background: #111;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #333;
}

/* Featured Plan */
.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid #f97316;
}























/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-subtitle {
  display: inline-block;
  padding: 6px 16px;
  background: #355738;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111827;
}

.contact-header p {
  color: #4b5563;
  font-size: 1rem;
}

/* Wrapper */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 260px;
}

.info-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-6px);
}

.info-item i {
  font-size: 1.8rem;
  color: #355738;
  margin-bottom: 10px;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #111827;
}

.info-item p {
  color: #4b5563;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  flex: 1.2;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #355738;
  box-shadow: 0 0 6px rgba(6, 182, 212, 0.2);
}

/* Button */
.cfh-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #355738, #3b82f6);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.cfh-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #355738);
}

/* Confirmation Message */
.cfh-confirmation {
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #16a34a;
  display: none;
  text-align: center;
}
























/* Privacy Policy Section */
.privacy-policy {
  background: #f9fafc;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

.privacy-policy .container-fluid {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Headings */
.privacy-policy h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #355738;
  border-left: 4px solid #355738;
  padding-left: 12px;
}

/* Paragraphs */
.privacy-policy p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #444;
}

/* List styling */
.privacy-policy ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.privacy-policy ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
}

.privacy-policy ul li::before {
  content: "✔";
  color: #355738;
  font-size: 0.9rem;
  position: absolute;
  left: -20px;
  top: 2px;
}

/* Strong text */
.privacy-policy strong {
  color: #111;
  font-weight: 600;
}

/* Contact Info block */
.privacy-policy p:last-of-type {
  margin-top: 20px;
  padding: 15px;
  background: #f0f6ff;
  border-left: 4px solid #355738;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy .container-fluid {
    padding: 25px;
  }
  .privacy-policy h4 {
    font-size: 1.1rem;
  }
}









/* Services Section */
.services-new {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f8fa, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.services-new .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 100px;
  
}

.services-new .section-subtitle {
  display: inline-block;
  padding: 6px 16px;
  background: #355738;
  color: #fff;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.services-new .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin: 12px 0;
}

.services-new .section-description {
  font-size: 16px;
  color: #666;
}

/* Services Container */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 320px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #355738;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  position: relative;
}

.service-number {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #355738;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 20px;
}

.service-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.service-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #355738;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #023e8a;
}
