        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF8C42;
            --dark-color: #1A1A1A;
            --light-bg: #F5F0E8;
            --gray-text: #666666;
            --light-gray: #F9F9F9;
            --white: #FFFFFF;
            --border-radius: 12px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-text);
        }

        /* ========== HEADER & NAVIGATION ========== */
        header {
            background-color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: rgb(227, 223, 223);
            font-family: Serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            font-weight: bold;
           
        }

        nav a {
            text-decoration: none;
            color: var(--gray-text);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #E67E2A;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background-color: var(--light-bg);
            padding: 4rem 2rem;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--gray-text);
        }

        .hero-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .hero-button:hover {
            background-color: #E67E2A;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height:auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .curve-shape {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50% 50% 0 0;
            background: linear-gradient(135deg, var(--primary-color), rgba(255,140,66,0.3));
            top: -50px;
            left: 0;
            z-index: -1;
        }

        /* ========== TRUST SECTION ========== */
        .trust-section {
            padding: 4rem 2rem;
            background-color: var(--white);
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .trust-content h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .trust-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .trust-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-card p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* ========== COMMITMENT SECTION ========== */
        .commitment {
            padding: 4rem 2rem;
            background-color: var(--light-bg);
        }

        .commitment-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .commitment-content h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .commitment-list {
            list-style: none;
            margin: 2rem 0;
        }

        .commitment-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--gray-text);
        }

        .commitment-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .commitment-button {
            display: inline-block;
            background-color: var(--dark-color);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }

        .commitment-button:hover {
            background-color: var(--primary-color);
        }

        .commitment-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* ========== SERVICES BANNER ========== */
        .services-banner {
            background: url("./photo/1.jpeg") center/cover no-repeat;
            color: rgb(251, 252, 252);
            padding: 4rem 2rem;
            text-align: center;
        }

        .services-banner h2 {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 2rem;
        }

        .services-banner p {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* ========== TESTIMONIAL SECTION ========== */
        .testimonial {
            padding: 4rem 2rem;
            background-color: var(--white);
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .testimonial-content h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }

        .testimonial-card {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: var(--border-radius);
            position: relative;
        }

        .testimonial-percentage {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .testimonial-label {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

        .author-info h4 {
            color: var(--dark-color);
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--gray-text);
        }

        .testimonial-images {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .testimonial-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background-color: #E0E0E0;
            object-fit: cover;
        }

        /* ========== CIRCLES SECTION ========== */
        .circles-section {
            padding: 4rem 2rem;
            background-color: var(--light-bg);
            text-align: center;
        }

        .circles-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .circles-heading {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 3rem;
        }

        .circles-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .circle-item1,.circle-item2,.circle-item3 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.95rem;
            color: var(--gray-text);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .circle-item1{
            background: url("./photo/2.jpeg") center/cover no-repeat;
        }
        .circle-item2{
            background: url("./photo/3.jpeg") center/cover no-repeat;
        }
        .circle-item3{
            background: url("./photo/4.jpeg") center/cover no-repeat;
        }

        .circle-item:hover {
            transform: scale(1.05);
        }

        /* ========== LARGE HEADING SECTION ========== */
        .large-heading-section {
            padding: 4rem 2rem;
            background-color: var(--white);
            text-align: center;
        }

        .large-heading {
            font-size: 2.5rem;
            color: var(--dark-color);
            line-height: 1.3;
            max-width: 900px;
            margin: 0 auto;
        }

        .large-heading span {
            color: var(--primary-color);
        }

        /* ========== NEWS SECTION ========== */
        .news-section {
            padding: 4rem 2rem;
            background-color: var(--light-bg);
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-heading {
            text-align: center;
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 3rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .news-image {
            width: 100%;
            height: 200px;
            background-color: #D0D0D0;
            object-fit: cover;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-content h3 {
            font-size: 1.1rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .news-content p {
            font-size: 0.85rem;
            color: var(--gray-text);
            margin-bottom: 0.5rem;
        }

        .news-date {
            font-size: 0.8rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        /* ========== FOOTER ========== */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
        }

        .newsletter {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter input {
            flex: 1;
            padding: 0.6rem;
            border: none;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .newsletter button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter button:hover {
            background-color: #E67E2A;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-container,
            .trust-container,
            .commitment-container,
            .testimonial-container {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .services-banner h2 {
                font-size: 1.8rem;
            }

            .large-heading {
                font-size: 1.8rem;
            }

            .trust-features {
                grid-template-columns: 1fr;
            }

            .circles-grid {
                flex-direction: column;
                align-items: center;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .newsletter {
                flex-direction: column;
            }
        }
