/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
    padding-top: 70px; /* Space for fixed navbar */
}

/* Hamburger icon animation */
.hamburger.open {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Smooth sub-menu animation */
.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.sub-menu.show-submenu {
    max-height: 500px;
    padding: 10px 0;
}

/* Navbar */
/* Navbar */
/* Navbar */
        .navbar {
            width: 100%;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .menu {
            display: flex;
            align-items: center;
        }

        .menu ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .menu ul li a {
            text-decoration: none;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .menu ul li a:hover {
            background-color: #334155;
        }

        /* Hamburger */
        .hamburger {
            font-size: 2rem;
            color: white;
            cursor: pointer;
            display: none;
        }

        /* Submenu */
        .submenu {
            max-height: 0;
            overflow: hidden;
            background-color: #334155;
            border-radius: 5px;
            transition: max-height 0.4s ease;
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
        }

        .submenu a {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .submenu a:hover {
            background-color: white;
            color: #0f172a;
        }

        /* Desktop Hover Effect */
        @media (min-width: 769px) {
            .has-submenu {
                position: relative;
            }

            .has-submenu:hover .submenu {
                max-height: 500px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .menu {
                position: absolute;
                top: 100px;
                right: 0;
                background-color: #1e293b;
                width: 250px;
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }

            .menu.active {
                transform: translateX(0);
            }

            .menu ul {
                flex-direction: column;
                width: 100%;
            }

            .menu ul li {
                width: 100%;
            }

            .menu ul li a {
                padding: 12px 20px;
                width: 100%;
            }

            .hamburger {
                display: block;
            }

            /* Mobile submenu style */
            .submenu {
                position: static;
                background-color: #475569;
                width: 100%;
            }
        }

/* Contact Section */
.contact-button {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 35px;
    background: linear-gradient(45deg, #00e5ff, #00a6d8);
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 10px #00e5ff, 0 0 20px #00ffb0 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00e5ff, 0 0 40px #00ffb0 inset;
}

.new-contact-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 20px;
    overflow: hidden;
    color: #a0d8f7;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.contact-content > div {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1s forwards;
}

.contact-content > div:nth-child(1) { animation-delay: 0.3s; }
.contact-content > div:nth-child(2) { animation-delay: 0.6s; }
.contact-content > div:nth-child(3) { animation-delay: 0.9s; }

.quick-links ul li {
    margin-bottom: 15px;
    animation: bounceIn 1.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links ul li a {
    color: #a0d8f7;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
}

.contact-container {
    text-align: center;
    max-width: 400px;
}

.contact-title {
    font-size: 42px;
    color: #00f0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00f0ff;
}

.contact-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
}

.social-media {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatIcons 3s ease-in-out infinite;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 0 15px #00f0ff;
}

.rotating-ring {
    position: absolute;
    border: 8px solid #00f0ff;
    border-radius: 50%;
    opacity: 0.1;
    animation: rotateRing 15s linear infinite;
    z-index: 0;
}

.ring1 { width: 300px; height: 300px; top: -150px; left: -150px; }
.ring2 { width: 200px; height: 200px; bottom: -100px; right: -100px; animation-duration: 25s; }

@keyframes slideIn { to { opacity: 1; transform: translateY(0); } }

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes floatIcons {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .contact-content { flex-direction: column; align-items: center; gap: 30px; }
    .rotating-ring { display: none; }
}




        .split-container {
            display: flex;
            width: 100%;
            height: 100vh;
        }

        .split {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: flex 0.7s ease, transform 0.7s ease, box-shadow 0.7s ease;
            cursor: pointer;
        }

        .split:hover {
            flex: 3;
            transform: scale(1.03);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
            z-index: 2;
        }

        .content {
            text-align: center;
            color: #f0f0f0;
            padding: 20px;
            z-index: 2;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .split:hover .content {
            transform: scale(1.05);
            opacity: 1;
        }

        .content h1 {
            font-size: 48px;
            margin-bottom: 15px;
            color: #f0f0f0; /* Clean, soft white */
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .split.left .content h1 {
            color: #ff5c5c; /* Soft Red */
        }

        .split.middle .content h1 {
            color: #00e6a8; /* Soft Green-Teal */
        }

        .split.right .content h1 {
            color: #b084f9; /* Soft Purple */
        }

        .content p {
            font-size: 18px;
            color: #cccccc;
            margin-bottom: 20px;
        }

        .content button {
            padding: 12px 28px;
            font-size: 16px;
            border: none;
            background: linear-gradient(135deg, #ff0000, #ff8c00);
            color: #000;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .split.left .content button {
            background: linear-gradient(135deg, #ff4e50, #f9d423);
        }

        .split.middle .content button {
            background: linear-gradient(135deg, #00ff87, #00ffff);
        }

        .split.right .content button {
            background: linear-gradient(135deg, #8a2be2, #4b0082);
        }

        .content button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            color: #000;
        }

        /* Backgrounds */
        .left {
            background: linear-gradient(135deg, #290000, #4b0000);
        }

        .middle {
            background: linear-gradient(135deg, #002922, #004b3a);
        }

        .right {
            background: linear-gradient(135deg, #1c0030, #32004b);
        }

        /* Floating Circles */
        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            animation: float 8s infinite ease-in-out alternate;
        }

        .circle.one {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 10%;
        }

        .circle.two {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 10%;
            animation-duration: 10s;
        }

        .circle.three {
            width: 80px;
            height: 80px;
            top: 25%;
            right: 15%;
            animation-duration: 12s;
        }

        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(20px); }
        }

        @media (max-width: 768px) {
            .split-container {
                flex-direction: column;
            }

            .split:hover {
                flex: 1.5;
            }

            .content h1 {
                font-size: 32px;
            }

            .content p {
                font-size: 16px;
            }
        }
        
        
        
      /* Hero */
    .hero {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(90deg, #0077b6, #00b4d8);
      color: white;
    }

    .hero h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      opacity: 0.9;
    }

    /* Blog Layout */
    .blog-container {
      padding: 40px;
      max-width: 900px;
      margin: auto;
    }

    .blog-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .blog-content h2 {
      margin-top: 30px;
      color: #0077b6;
      border-left: 5px solid #00b4d8;
      padding-left: 10px;
    }

    .blog-content h3 {
      margin-top: 20px;
      color: #03045e;
    }

    .blog-content ul {
      padding-left: 25px;
      margin: 15px 0;
    }

    .blog-content ol {
      padding-left: 25px;
      margin: 15px 0;
    }

    .blog-content blockquote {
      background: #e0f7fa;
      padding: 15px 20px;
      border-left: 5px solid #0077b6;
      margin: 20px 0;
      font-style: italic;
      color: #333;
    }


