  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: white;
			
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
			background: url('../images/bd.png') no-repeat center left;
            background-size: contain;
            display: flex;
            align-items: center;
        }

        .logo-circle {
			background: url('../images/bd.png') no-repeat center left;
  background-size: contain;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .logo-text {
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-align: center;
        }

        .logo-bd {
			
            font-size: 18px;
            line-height: 1;
        }

        .logo-bluedot {
            font-size: 8px;
            margin-top: -2px;
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
            color: #666;
        }

        nav a.active {
            color: #00c853;
        }

        nav a:hover {
            color: #00c853;
        }

        /* Hero Section */
        #home {
            background: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            padding-right: 20px;
        }

        .hero-text h1 {
            font-size: 45px;
            color: #3b5593;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 25px;
            font-family: Georgia, serif;
        }

        .hero-text p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            background: #4a6fa5;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary:hover {
            background: #3a5a95;
            transform: translateY(-1px);
        }

        .btn-secondary {
            color: #4a6fa5;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            color: #3a5a95;
            text-decoration: underline;
        }

        .hero-image {
            position: relative;
            text-align: right;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Who Are We Section */
        #who-are-we {
            background: white;
            min-height: 100vh;
            padding: 120px 0 80px;
            display: flex;
            align-items: center;
        }

        .who-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .who-text h2 {
            font-size: 3rem;
            color: #4a6fa5;
            margin-bottom: 40px;
            font-family: Georgia, serif;
            font-weight: 400;
        }

        .who-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .benefits {
            list-style: none;
        }

        .benefits li {
            margin-bottom: 15px;
            font-size: 16px;
            color: #666;
            position: relative;
            padding-left: 25px;
        }

        .benefits li::before {
            content: "✓";
            color: #00c853;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .who-image {
            text-align: center;
        }

        .who-image img {
            max-width: 100%;
            height: auto;
        }

        /* Philosophy Section */
        #philosophy {
            background: url('../images/mult2.png') no-repeat center center;
            background-size: cover;
            min-height: 100vh;
            padding: 120px 0 80px;
            display: flex;
            align-items: center;
        }
		
		.phil-content {
            display: center;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

       .phil-text h2 {
    font-size: 3rem;
    color: #f9f9f9;
    margin-bottom: 40px;
    font-family: Georgia, serif;
    font-weight: 400;
    text-align: center;
}

.phil-description {
    font-size: 16px;
    color: #f9f9f9;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
    position: relative;
    padding: 20px 40px;
}

.phil-description::before {
    content: '"';
    font-size: 3rem;
    color: #f9f9f9;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

.phil-description::after {
    content: '"';
    font-size: 3rem;
    color: #f9f9f9;
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-family: Georgia, serif;
}


.phil-benefits {
            list-style: none;
        }

        .phil-benefits li {
            margin-bottom: 15px;
            font-size: 16px;
            color: #f9f9f9;
            position: center center;
            padding-left: 25px;
        }

        .phil-benefits li::before {
            content: "✓";
            color: #00c853;
            font-weight: bold;
            position: center;
            left: 0;
        }

        /* Contact Form Section */
        #contact {
            color: #f9f9f9;
            padding: 120px 0 0;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            padding-bottom: 80px;
        }

        .contact-form-container h2 {
            font-size: 3rem;
            color: #4a6fa5;
            margin-bottom: 50px;
            font-family: Georgia, serif;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 30px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 0;
            font-size: 14px;
            background: #f9f9f9;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4a6fa5;
            background: white;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Footer Section */
        .footer-section {
            background: white;
            padding: 80px 0 40px;
            border-top: 1px solid #e0e0e0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 2.5rem;
            color: #4a6fa5;
            margin-bottom: 30px;
            font-family: Georgia, serif;
            font-weight: 400;
        }

        .contact-info {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }

        .contact-info .phone {
            color: #00c853;
            font-size: 18px;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .contact-info .phone:hover {
            text-decoration: underline;
        }

        .address-section h4 {
            color: #4a6fa5;
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .address-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .opening-hours h4 {
            color: #4a6fa5;
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .hours-text {
            color: #666;
            line-height: 1.6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
            color: #666;
            font-size: 14px;
        }

        .back-to-top {
            text-align: center;
            margin: 40px 0;
        }

        .back-to-top a {
            color: #4a6fa5;
            text-decoration: none;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .back-to-top a:hover {
            color: #00c853;
        }

        /* Scroll indicator for active navigation */
        .nav-indicator {
            position: absolute;
            bottom: -2px;
            left: 0;
            height: 2px;
            background: #00c853;
            transition: all 0.3s ease;
        }

        /* Mobile Responsiveness */
        @media (max-width: 968px) {
            .hero-content,
            .who-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-text {
                padding-right: 0;
                order: 2;
            }

            .hero-image {
                order: 1;
                text-align: center;
            }

            .hero-text h1,
            .who-text h2,
            .contact-form-container h2 {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            nav ul {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            header {
                padding: 10px 0;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .hero-text h1,
            .who-text h2,
            .contact-form-container h2 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .container {
                padding: 0 15px;
            }

            .footer-column h3 {
                font-size: 2rem;
            }

            #home {
                padding-top: 140px;
            }
        }

        @media (max-width: 480px) {
            .logo-circle {
                width: 50px;
                height: 50px;
            }

            .logo-bd {
                font-size: 16px;
            }

            .hero-text h1,
            .who-text h2,
            .contact-form-container h2 {
                font-size: 1.8rem;
            }

            nav ul {
                font-size: 14px;
            }
        }

        /* Smooth scroll offset for fixed header */
        section {
            scroll-margin-top: 100px;
        }
   