     /* General Styles */
     body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: linear-gradient(to bottom, #00A3E0, #7DD3E0);
        min-height: 100vh;
       
        justify-content: center;
        align-items: center;
    }
    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    ul li {
        padding: 12px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    }
    
    ul li a {
        text-decoration: none;
        color: white; /* White text */
        display: block;
        transition: color 0.3s ease-in-out;
    }
    
    ul li:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
    }
    
    ul li a:hover {
        color: #f0f0f0; /* Slightly lighter white on hover */
    }
    
    /* Main Container */
    .container {
        display: flex;
      
        height: 100vh;
        width: 100%;
      
    }
    
    /* Left Section */
    .left-section {
        width: 50%;
        background: linear-gradient(to bottom right, #007C9A, #00B2CC);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    
    
    /* Delay stagger effect */
    .left-section h1:nth-child(1) { animation-delay: 0s; }
    .left-section h1:nth-child(2) { animation-delay: 0.3s; }
    .left-section h1:nth-child(3) { animation-delay: 0.6s; }
    
    /* Right Section */
    .right-section {
        width: 50%;
    }
    
    .right-section img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    
    /* Navigation Menu */
    .menu-button {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
    
    .menu-button:focus {
        outline: none;
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: #004D5B;
        color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 20px;
    }
    
    .menu.open {
        display: block;
        transform: translateX(0);
    }
    
    .menu .close-button {
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
        color: white;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .menu ul {
        list-style: none;
        padding: 50px 0;
    }
    
    .menu ul li {
        margin: 15px 0;
        font-size: 18px;
    }
    

    
    /* Responsive Design */
    @media (max-width: 768px) {
        .container {
            flex-direction: column;
        }
    
        .left-section,
        .right-section {
            width: 100%;
            height: 50vh;
        }
    }
    
    /* Keyframe Animation */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Logo */
    .logo-container {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
    }
    
    .logo-container img {
        width: 150px;
        height: auto;
    }
    
    /* Playbook Section */
    .playbook-section {
        text-align: center;
        padding: 50px 20px;
        max-width: 100%;
        margin: auto;
        background-color: #00a0bc;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        margin-top: 41px;
        padding-top: 94px;
    }
    
    .playbook-section h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #000;
    }
    
    .playbook-section p {
        font-size: 1.1rem;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* Icon Container */
    .icon-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .icon-box {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, #B2EBF2, #00BCD4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: bold;
        color: black;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        transition: 0.3s;
        cursor: pointer;
    }
    
    .icon-box:hover {
        transform: scale(1.1);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
    }
    
    /* Form Section */
    .form-container {
        width: 100%;
        max-width: 500px;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        outline: none;
    }
    
    .form-group textarea {
        resize: none;
        height: 100px;
    }
    
    /* Submit Button */
    .submit-btn {
        width: 100%;
        background: black;
        color: white;
        padding: 10px;
        font-size: 16px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .submit-btn:hover {
        background: #333;
    }
    
    /* Image Section */
    .image-container {
        display: none;
        margin-left: 20px;
    }
    
    .image-container img {
        max-width: 100%;
        height: auto;
    }
    
    /* Responsive Design Adjustments */
    @media (min-width: 768px) {
        body {
            background: #f0f4f8;
        }
    
        .container {
            flex-direction: row;
            justify-content: space-between;
            background: none;
        }
    
        .heading {
            text-align: left;
            color: black;
        }
    
        .form-container {
            width: 50%;
        }
    
        .image-container {
            display: block;
            width: 45%;
        }
    }
    

/* Contact Css */
 .custom-contact-container {
            background-color: #f0f8ff;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .custom-contact-container h1 {
            font-size: 2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 1rem;
        }
        
        .custom-contact-container button {
            background-color: black;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
        }
        .custom-contact-container img {
            max-width: 100%;
            height: auto;
        }
        @media (min-width: 768px) {
            .custom-contact-container {
                flex-direction: row;
                align-items: flex-start;
            }
            .custom-contact-container .custom-form-section {
                width: 50%;
                margin-right: 2rem;
            }
            .custom-contact-container .custom-image-section {
                width: 50%;
            }
        }

        .custom-contact-container input[type="text"],
        .custom-contact-container input[type="email"],
        .custom-contact-container textarea {
            width: 53%;
            height: 2rem;
            padding: -0.5rem;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 0.5rem;
        }
        
        /* For multi-line text box (textarea) */
        .custom-contact-container textarea {
            height: 6rem; /* Increase height for textarea */
            resize: vertical; /* Allow resizing */
        }
     
    .footer {
        background: linear-gradient(to right, #4BA3C3, #52B2CF);
        color: black;
        padding: 40px 0;
        text-align: center;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .footer-left {
        text-align: left;
    }
    
    .footer-logo {
        width: 80px;
        margin-bottom: 10px;
    }
    
    .footer-left h2 {
        font-size: 22px;
        font-weight: bold;
        margin: 0;
    }
    
    .footer-left p {
        font-size: 16px;
        margin: 5px 0;
    }
    
    .footer-middle {
        text-align: center;
        max-width: 400px;
    }
    
    .footer-middle h3,
    .footer-right h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .footer-middle p,
    .footer-right p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .footer-email {
        font-size: 16px;
        font-weight: bold;
        color: black;
        text-decoration: none;
    }
    
    .footer-email:hover {
        text-decoration: underline;
    }
    
    .footer-right {
        text-align: right;
    }
    
    .social-icon {
        width: 30px;
        height: auto;
        margin-top: 10px;
    }
    
    /* Responsive Footer */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }
    
        .footer-left,
        .footer-middle,
        .footer-right {
            text-align: center;
            margin-bottom: 20px;
        }
    }