:root {
    --dark-blue: #0a1128;
    --light-blue: #0a112881;
    --electric-blue: #0066ff;
    --skyblue: #C6FCFF;
    --darkskyblue: #87CEFA;
    --neon-cyan: #00f5d4;
    --neon-pink: #ff00ff;
    --light: #f8f9fa;
    --text-color: #333;
    --white: rgb(255, 255, 255);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    /**background: var(--dark-blue);*/
    background-color: whitesmoke;
    color: var(--light);
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background: rgba(10, 17, 40, 0.95);*/
    background-color: whitesmoke;
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: -3%;
    gap: 12px;
}

.logo-img {
    width: 28px;
    height: 30px;
}
@media (max-width: 768px) {}
@media (max-width: 768px) {}
@media (max-width: 768px) {}
@media (max-width: 768px) {}
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    /*background: linear-gradient(to right, var(--neon-cyan), var(--electric-blue));*/
    background: linear-gradient(to right, #1e3577, #274194c5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: -12px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--neon-cyan);
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
position: relative;
display: inline-block;
}


.dropdown-content {
/*display: none;
position:absolute;*/
/*background-color: #1f2133;
background: linear-gradient(145deg, #1e1f2b, #380670);*/
/*background-color: var(--darkskyblue);
min-width: 300px;
width: fit-content;
box-shadow: 0 8px 16px rgba(0,0,0,0.25);
border-radius: 10px;
z-index: 1;
padding: 10px 20px;
margin-top: 0px;*/

position: absolute;
            
            transform: translateX(-50%);
            width: fit-content;
            min-width: 300px;
            background: rgb(255, 255, 255);
            border: 1px solid var(--neon-cyan);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            color: #fff;
            font-family: Arial, sans-serif;
}

.dropdown-content a {
color: var(--dark-blue);
padding: 12px 16px;
text-decoration: none;
display: block;
transition: 0.2s;
border-radius: 8px;
text-align: start;
}

.dropdown-content a:hover {
background-color: #4f46e5;
color: #fff;
}

.dropdown:hover .dropdown-content {
display: block;
}

/* Mobile menu toggle (hidden by default) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    
}
.mobile-menu-toggle i{
    color: var(--dark-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        padding-bottom: 200px;
        gap: 20px;
        clip-path: circle(0% at 90% -10%);
        transition: clip-path 0.5s ease;

        background: rgb(255, 255, 255);
            border: 1px solid var(--neon-cyan);
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        clip-path: circle(150% at 90% -10%);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-toggle i{
        color: var(--dark-blue);
    }
    .nav-links a{
        color: var(--dark-blue);
    }
}

/* Curved gradient header */
.hero {
    /*background: linear-gradient(135deg, var(--dark-blue), #1a237e);*/
    background-color: #c6fcff7e;
    padding: 120px 0 150px;
    text-align: center;
    position: relative;
    clip-path: ellipse(100% 80% at 50% 10%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    /*background: linear-gradient(to bottom, rgba(10, 17, 40, 0.9), transparent);*/
    background-color: var(--skyblue);
    z-index: 1;
}
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--dark-blue), var(--light-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    color: var(--dark-blue);
}
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero {
        padding: 100px 0 140px;
    }

}
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1em;
        padding: 1px 10px;
    }
    .hero {
        padding: 50px 0 70px;
        margin-top: 50px;
    }
}
@media (max-width: 500px) {

}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle .fa-times {
    transform: rotate(180deg);
}

@keyframes glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}
.glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
    filter: blur(30px);
    animation: glow 4s infinite;
    z-index: 0;
}
.glow-1 {
    top: 20%;
    left: 10%;
}
.glow-2 {
    bottom: 10%;
    right: 15%;
}


/*      FOOTER STYLE  STARTS  */
footer {
    background: wheat; /* Dark background */
    color: white; /* White text */
    padding: 40px 20px; /* Padding for a spacious layout */
    text-align: center; /* Centered text */
}
.home-footer {
    background: linear-gradient(135deg, #1a237e 0%, #1a237e 100%);
    color: white; /* White text */
    padding: 40px 20px; /* Padding for a spacious layout */
    text-align: center; /* Centered text */
    margin-top: 50px;
}

.footer-container {
    display: flex; /* Flexbox for layout */
    justify-content: space-around; /* Space between items */
    flex-wrap: wrap; /* Allow items to wrap */
    max-width: 1200px; /* Max width for large screens */
    margin: auto; /* Center the container */
}

.footer-section {
    background: linear-gradient(135deg, #0a1128 0%, #0a1128 100%);
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding for sections */
    margin: 10px; /* Margin for sections */
    flex: 1; /* Allow sections to grow */
    min-width: 220px; /* Minimum width for responsiveness */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

 .footer-section h3 {
    font-size: 1.5em; /* Larger font size for headings */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #ffa500; /* Underline with color */
    padding-bottom: 10px; /* Padding below heading */
    color: var(--white);
}
.footer-section p{
    color: whitesmoke;
}
footer p{
    color: whitesmoke;
}

.aaa {
    color: #FFA500; /* Link color */
    text-decoration: none; /* No underline */
    transition: color 0.3s; /* Smooth color transition */
    display: block; /* Block display for links */
    margin: 5px 0; /* Margin for links */
}


.aaa:hover {
    color: #FFDE00; /* Change link color on hover */
    cursor:default;
}

.social-icons {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* No padding */
    display: flex; /* Flexbox for icons */
    justify-content: center; /* Center icons */
    margin-top: 10px; /* Space above icons */
}

.social-icons li {
    margin: 0 15px; /* Margin between icons */
}

.social-icons a {
    font-size: 1.5em; /* Increase icon size */
    transition: transform 0.3s; /* Smooth scale on hover */
    color: #FFA500; /* Icon color */
}

.social-icons a:hover {
    transform: scale(1.2); /* Scale icon on hover */
}

/**     FOOTER STYLES ENDS      */

/**     COOKIES     **/

.container-cookie {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        header {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 30px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        h1 {
            font-size: 2rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            background: var(--dark-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2{
            font-size: 1.2rem;
            color: var(--dark-blue);
        }
        h3{
            
            color: var(--dark-blue);
        }
        p{
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .subtitle-cookie {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 10px;
            
        }
        
        .content-cookie {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }
        
        .features-cookie {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #ff7e5f;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .reset-section {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin: 40px 0;
        }
        
        .reset-btn {
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
        }
        
        .reset-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 7px 20px rgba(255, 75, 43, 0.6);
        }
        
        .reset-btn:active {
            transform: scale(0.98);
        }
        
        .status-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .status-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
            display: inline-block;
        }
        
        .status-active {
            background: #4CAF50;
            box-shadow: 0 0 10px #4CAF50;
        }
        
        .status-inactive {
            background: #f44336;
        }
        
        /* Cookie Banner Styling */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 800px;
            background: rgba(10, 17, 40, 0.95);
            border: 1px solid var(--neon-cyan);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            color: #fff;
            font-family: Arial, sans-serif;
        }
        
        .cookie-banner-content {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .cookie-banner p {
            margin: 0 0 15px 0;
            line-height: 1.6;
            font-size: 1.1rem;
            max-width: 800px;
        }
        
        .cookie-banner a {
            color: #4CAF50;
            text-decoration: underline;
            font-weight: bold;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .cookie-buttons button {
            background-color: #4CAF50;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            margin: 5px;
            transition: all 0.3s ease;
            min-width: 180px;
        }
        
        .cookie-buttons button:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        #reject-cookies {
            background-color: #f4433654;
        }
        
        #reject-cookies:hover {
            background-color: #da190b81;
        }
        
        #manage-cookies {
            background-color: #2196F3;
        }
        
        #manage-cookies:hover {
            background-color: #0b7dda;
        }
        
        /* Modal for preferences */
        .cookie-preferences-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        
        .modal-content {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            height: 90%;
            max-width: 600px;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            /* Add these lines for scrollability */
    overflow-y: auto; /* Adds a vertical scrollbar if content overflows */
    -webkit-overflow-scrolling: touch; /* Improves scrolling performance on touch devices */
        }
        
        .modal-content h2 {
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
            font-size: 2rem;
            color: #ff7e5f;
        }
        
        .modal-content p {
            margin-bottom: 25px;
            line-height: 1.6;
            text-align: center;
        }
        
        .preference-options {
            margin: 25px 0;
        }
        
        .preference-options label {
            display: flex;
            align-items: center;
            padding: 15px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .preference-options label:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .preference-options input[type="checkbox"] {
            margin-right: 15px;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        
        .preference-options span {
            flex: 1;
        }
        
        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .modal-buttons button {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            min-width: 150px;
        }
        
        #save-preferences {
            background: linear-gradient(to right, #4CAF50, #2E7D32);
            color: white;
        }
        
        #save-preferences:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        #close-preferences {
            background: linear-gradient(to right, #f44336, #c62828);
            color: white;
        }
        
        #close-preferences:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        #reset-preferences {
            background: linear-gradient(to right, #ff9800, #f57c00);
            color: white;
        }
        
        #reset-preferences:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-type {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            color: #ff7e5f;
        }
        
        .cookie-desc {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .confirmation {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #4CAF50;
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1002;
            display: none;
        }
        
        @media (max-width: 768px) {
            
            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cookie-buttons button {
                width: 100%;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .modal-buttons button {
                width: 100%;
            }
        }