* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    color: #f5f5f5;
    z-index: 1000;
    background: #1d2142; /* Placeholder; adjust color later */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle span {
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  
  /* X Animation Effect */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .menu-toggle.active span {
    background-color: orange;
}
  

.head-logo {
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.head-logo:hover{
    color: orange;
}
.nav {
    display: flex;
    list-style: none;
}

.nav li {
    margin: 0 20px;
    position: relative; /* Needed for dropdown positioning */
}

.nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFF; /* Placeholder; adjust color later */
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #555; /* Placeholder; adjust color later */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the parent item */
    left: 0;
    
    background: #fff; /* Placeholder; adjust color later */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 300px;
    padding: 10px 0;
    padding-bottom: 30px;
    z-index: 1000;

}

.dropdown-menu li {

    padding: 20px;
    height: 60px;
    margin: 0;
}

#icon-head{
    font-size: 24px;
    color: #f5a623; /* Placeholder; adjust color later */
}

.icon-head:hover{
    color: #fff;
}

.icon-head .dropdown-menu a:hover{
    color: #fff;
}

.dropdown-menu a {

    height: 60px;
    align-items: center;
    display: flex;
    gap: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;

    text-transform: none; /* Arcadia uses sentence case in dropdowns */
    color: #000; /* Placeholder; adjust color later */
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #1d2142; /* Placeholder; adjust color later */
    color: #fff; /* Placeholder; adjust color later */
}

.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}

.login-signup {
    display: flex;
    gap: 15px;
}

.login-signup button {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #FFF; /* Placeholder; adjust color later */
    background: transparent;
    color: #FFF;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.login-signup button:hover {
    background: #000; /* Placeholder; adjust color later */
    color: #fff;
}

/* Hero Section */
.hero {
    color: white;
    background-color: #111536;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    /* max-width: 1200px; */
    margin: 0 auto;
}



.left {
    width: 50%;
    min-width: 300px;
}



.right {
    width: 50%;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

.company-name {
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slogan {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.cta-primary {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    background: #fff; /* Placeholder; adjust color later */
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #fff; /* Placeholder; adjust color later */
    color: black;
}

.cta-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid #fff; /* Placeholder; adjust color later */
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background: #000; /* Placeholder; adjust color later */
    color: #fff;
}

/* About Section */
.about, .solutions, .industries {

    padding: 80px 5%;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

#sol-r{
    margin-top: 10%;
}

.solutions{
    background-color: #111536;
    max-width: 100%;
}

.solutions #subtitle {
    color: #fff;
}

.solutions #description {
    color: #fff;
}

#subtitle {
    color: #372ee2;
    font-size: 32px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#description {
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
    /* margin: 20px auto 40px; */
}

/* Solution.html  - open*/

#solution-about{
    display: flex;
    padding: 80px 5%;
    gap: 15%;
    flex-direction: row-reverse;
}



#solution-img:hover{
    cursor: pointer;
    transition: 0.3s ease-in-out;
    scale:1.1;
    transform: translateX(20px);
}

#highlight{
    color: cyan;
}

.defense{
    color: #fff;
    background-color: #111536;
    display: flex;
    gap: 15%;
    padding: 80px 5%;
    text-align: left;
   
    margin: 0 auto;
}

.l-defense{
    width: 50%;
    min-width: 300px;
}

.protect{
    flex-direction: row-reverse;
    display: flex;
    gap: 15%;
    padding: 80px 5%;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

/* solution.html - close*/

/* About Cards */
.about-card-container {
    margin-top: 5%;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #fff; /* Placeholder; adjust color later */
    border-radius: 12px;
    text-align: left;
    box-shadow: 0px 3px 18px 0px rgba(29, 33, 66, 0.192);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 3px 18px 0px rgba(29, 33, 66, 0.459);
}

.card-title {
    margin-top: 5%;
    color: #372ee2;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
}

/*SIEM.HTMl starts here */


#siem-about{
    min-width: 100%;
    /* background-color: hsla(0, 0%, 85%, 0.945);    */
}
#icon-card{
    color: white;
    background-color: orange;
    padding: 10px 5%;
    border-radius: 15px;
    font-size: 30px;
 
}

.card-img{
    min-width: 220px;
    max-height: 200px;
    border-radius: 12px;
}

/*SIEM.HTMl close here */

/*data.HTMl starts here */

#data-about{
    background-color: white;
}



/* Industries Section */
.industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}

.industry-list li {
    font-size: 16px;
    font-weight: 400;
}

.feedback{
    padding: 80px 5%;
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    text-align: left;
}

.l-side{
    margin-top: 5%;
    padding: 80px 2.5%;
    /* background-color: #2edce2; */
    width: 40%;
    min-width: 300px;
}

.numbers{
    margin-top: 5%;
    display: flex;
    gap: 100px;
}

#num{
    font-size: 44px;
    font-weight: 700;
    color: #2edce2;
}

.r-side{
    border-radius: 25px;
    background-color: #2edce2;
    justify-content: flex-end;
    top: 0;
    width: 40%;
    height: 420px;
    min-width: 300px;
    display: flex;

}

#dotlottie-canvas{
    margin-top: -20%;;
}

/* Footer */
footer {
    background-color: #1d2142;
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    color: #FFF ;
    justify-content: space-between;
}

footer .head-logo{
    font-size: 72px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

footer .head-logo:hover{
    color: #f5a623;
}

.footer-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f5a623;
}

.footer-list{
    list-style-type: none;
}

footer a:hover{
    text-decoration: underline;
}


footer a {
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: left;
        padding: 60px 5%;
    }

    .left, .right {
        width: 100%;
    }

    .right {
        justify-content: center;
        margin-top: 40px;
    }

    .company-name {
        font-size: 48px;
    }

    .slogan {
        font-size: 18px;
    }

    .card {
        width: 45%;
    }

    .dropdown-menu {
        min-width: 180px;
    }


    .l-defense{
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    header {
        padding: 10px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .feedback{
        flex-direction: column;
        padding: 40px 5%;
    }
    .l-side{
        width: 100%;
        padding: 20px 5%;
    }

    .l-defense{
        width: 100%;
        padding: 20px 5%;
    }

    .r-side{
        width: 100%;
        border-radius: 50px;
        padding: 20px 5%;
        display: flex;
    }

    #score{
        font-size: 14px;
        font-weight: 700;

    }

    #num{
        font-size: 24px;
        font-weight: 700;
    }

    #dotlottie-canvas{
        margin-top: -40%;
    }

    .login-signup{
        display: none;
    }

    /* Hamburger Menu */
    .menu-toggle {
        font-size: 30px;
        cursor: pointer;
        display: flex;
        z-index: 1000;
    }

    /* Hide desktop nav initially */
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0px;
        right: 0px;
        height: 100vh;
        background: #ffffff;
        width: 300px;
        border-radius: 5px;
        padding: 10px;

    }

    #solution-about{
        display: flex;
        flex-direction: column;

    }

    #solution-about img{
        height: 320px ;
        margin-top: 10%;
        justify-content: center;
    }

    .defense{

        display: flex;
        flex-direction: column;
    }

    .protect{
        display: flex;
        flex-direction: column;

    }

    /* Show nav when active */
    .nav.active {
        display: flex;
    }

    .nav li {
        /* margin: 10px 15px; */
        width: 100%;
        margin-bottom: 10%;
        
        list-style: none;
    }

    .nav a {
   
        color: rgb(0, 0, 0);
        text-decoration: none;
        display: flex;
        width: 100%;
        padding: 10px;
    }

    /* Mobile dropdown menus */
    .dropdown-menu {

        box-shadow: none;
        display: none; /* Always show dropdown on mobile */
        flex-direction: column; /* Stack items vertically */
        width: 250px; /* Full width */
        height: auto;
        text-align: left; /* Align text to the left */
        background: #cfd4ff44; /* Background color for mobile */
        padding: 5px; 
    }

    /* Show dropdown on click */
    .dropdown-menu.show {
        position: sticky;
        display: flex;
    }

    /* Disable hover dropdown for mobile */
    .dropdown:hover .dropdown-menu {
        display: block; /* Keep it displayed */
    }


    .company-name {
        font-size: 36px;
    }

    .slogan {
        font-size: 16px;
    }

    .about, .solutions, .industries , #solution-about {
        padding: 60px 5%;
    }

    .card-img{
        max-width: 100%;
    }
}



@media screen and (max-width: 480px) {
    header {
       justify-content: space-between;
    }
    .head-logo {
        font-size: 20px;
    }

    .card {
        width: 100%;
    }

    .menu-toggle {
        font-size: 20px;
    }

    .nav a {
        font-size: 12px;
    }

    .login-signup button {
        display: none;
        padding: 6px 14px;
        font-size: 12px;
    }

    .company-name {
        font-size: 28px;
    }

    .slogan {
        font-size: 14px;
    }

    #subtitle {
        font-size: 24px;
    }

    #description {
        font-size: 14px;
    }
}