/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip; /* Modern alternative to hidden */
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* AOS specific fixes without breaking animations */
[data-aos], [data-aos-delay], [data-aos-easing], [data-aos-duration] {
  max-width: 100%;
  /* Removed the transform: none !important that was breaking animations */
}

/* Make sure AOS containers don't add horizontal overflow */
.aos-init, .aos-animate {
  max-width: 100%;
}

/* Target AOS wrapper if it exists */
[data-aos-container], .aos-initialized {
  max-width: 100%;
}

/* Optional but recommended - prevent AOS animations from causing overflow */


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a1118;
    
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
}


nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a.active {
    color: #0080ff;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #0080ff;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to bottom, #000000, #003366);
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
}

/* Common glow style */
.glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #3C8CE7, #000000);
    filter: blur(40px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse 20s infinite;
}

/* Individual glow positions */
.glow1 {
  top: 20%;
  left: 15%;
}

.glow2 {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.glow3 {
  bottom: 10%;
  right: 10%;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #60EFFF, #407BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0080ff;
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, #000000, #003366);
    width: 100vw;
  height: 50vw;                 
  background-color: #48abe0;
  border-radius: 100vw 100vw 0 0;
  
    
}



.feature-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: absolute;
  
  left: 0;
  right: 0;
  
  z-index: 1;
  color: black;
}

.feature-item {
  text-align: center;
  flex: 1;
}

.feature-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 0;
}
/* Dashboard Section */
.dashboard {
  
    position: relative;
  
  text-align: center;
 background: #FFFFFF;
  z-index: 1;
  overflow: hidden;
 
 
}
.hero-curve svg {
  position: relative;
  background-color: transparent;
}
.hero-curve{
    background-color: #fff;
    margin-bottom: -2px;
    overflow: hidden;
  padding-bottom: 60px;
}

.gradient-text {
  background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}


.dashboard h2 {
    font-size: 2.5rem;
    
    margin-bottom: 10px;
}

.dashboard p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.dashboard-preview {
    margin-top: 40px;
}

/* Dashboard Details */
/* .dashboard-details {
    padding: 80px 0;
    background-color: #fff;
}

.dashboard-details .container {
    display: flex;
    
    justify-content: space-between;
}

.details-image {
    flex: 0 0 60%;
    position: relative;
}
.details-image img {
  width: 100%;
  height: auto;
  display: block;
}
.details-points {
    flex: 0 0 35%;
}

.detail-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.point-line {
    width: 50px;
    height: 2px;
    background-color: #000;
    position: relative;
    margin-right: 15px;
    margin-top: 10px;
}

.point-line::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    left: -5px;
    top: -4px;
}

.point-text h4 {
    color: #ff8000;
    margin-bottom: 5px;
}

.point-text strong {
    color: #0080ff;
} */

.dashboard-details {
  padding: 40px 0;
  background-color: #fff;
}

.details-image {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.details-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Simple labels over image */
.detail-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

.point-text {
  background-color: white;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}

.point-text h4 {
  margin: 0;
  color: #ff8000;
  font-size: 14px;
}

.point-text p {
  margin: 0;
  color: #555;
  font-size: 12px;
}

.point-text strong {
  color: #0080ff;
}


/* Notification Section */
/* .notification {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.notification h2, .report h2 {
    font-size: 2.5rem;
    color: #0080ff;
    margin-bottom: 10px;
}

.notification p, .report p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-text {
    flex: 0 0 45%;
}

.section-image {
    flex: 0 0 50%;
    position: relative;
}

.phone-img {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    height: auto;
}

.alert-system {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.alert-icon {
    margin-right: 15px;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0080ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-system h3 {
    color: #ff8000;
    font-size: 1.3rem;
}

.alert-feature, .report-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.arrow {
    color: #0080ff;
    margin-right: 10px;
} */

.notification {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.text-center {
  text-align: center;
  margin-bottom: 40px;
}

.notification h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.notification p,.report p {
  font-size: 1rem;
  color: #666;
}

.section-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section-text {
  flex: 0 0 40%;
  color: black;
}

.section-image {
  flex: 0 0 50%;
  position: relative;
  
}

/* Phone image - top-left of notification screen */
.phone-img {
  position: absolute;
  top: -150px;
  left: 400px;
  width: 25%;
  height: auto;
 
}

/* Notification screen */
.notif-screen {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

/* Alert icon gif on left of notification screen */
.alert-gif {
  position: absolute;
  left: -60px;
  
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  
}

/* Alert section left */
.alert-system {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.alert-system h3 {
  color: #ff8000;
  font-size: 1.3rem;
}

.alert-features {
  margin-top: 10px;
}

.alert-feature,.report-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.arrow {
  color: #0080ff;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.arrow i {
  transition: transform 0.3s ease;
}

.alert-feature:hover .arrow i,
.report-feature:hover .arrow i {
  transform: scale(1.2);
}

/* Responsive fix */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
    align-items: center;
  }

  .section-text,
  .section-image {
    flex: 100%;
  }

  .phone-img {
    width: 30%;
    left: 10px;
    top: -10px;
  }

  .alert-gif {
    display: none !important;
  }
}
/* write media query for less than 992px */
@media (max-width: 992px) {


    .alert-gif {
        display: none !important;
    }
}


/* Report Section */
.report {
    padding: 80px 0;
    background-color: #fff;
}

.report-feature-title {
    margin: 20px 0 10px;
}

.report-feature-title h3 {
    color: #ff8000;
    font-size: 1.3rem;
}
.report-screen{
    border-radius: 10px;
}

.report-icon {
    position: absolute;
    top: -12%;
    width: 100px;
    height: 100px;;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-icon img {
    width: 100px;
    height: 100px;
    
    border-radius: 5px;
    padding: 5px;
}

@media (max-width: 1276px) {
    .report-icon {
        
        width: 80px;
        height: 80px;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* .feature-items {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 30px);
        max-width: none;
    } */
    
    .dashboard-details .container,
    .section-content {
        flex-direction: column;
    }
    
    
    .details-points,
    .section-text,
    .section-image {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .phone-img {
        position: static;
        transform: none;
        width: 15%;
        display: block;
        margin: 20px auto 0;
    }
    
    .report-icon {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    nav ul li {
        margin-left: 15px;
    }
    
    .hero {
        padding: 120px 0 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    /* .feature-items {
        justify-content: center;
    }
    
    .feature-item {
        flex: 0 0 100%;
        max-width: 300px;
        margin-bottom: 40px;
    } */
     .feature-items {
   
    padding: 0 10px;
  }

  .feature-item {
    flex: 1;
    margin: 0 5px;
  }

  .feature-icon img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
   
  
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .dashboard h2,
    .notification h2,
    .report h2 {
        font-size: 2rem;
    }
    .report-icon img {
    width: 70px;
    height: 70px;
    
   
}
}

@media (max-width: 600px) {
  .point-text {
    font-size: 12px;
    padding: 4px 8px;
  }

  .point-text h4 {
    font-size: 12px;
  }

  .point-text p {
    font-size: 10px;
  }
}








/* second section */




.abhram_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Section */
        .abhram_hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .abhram_hero_title {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .abhram_hero_title span:first-child {
            background: linear-gradient(to bottom, #FF3E47, #2A41F4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            /* Optional for better browser support */
            background-clip: text;
            color: transparent;
        }

        .abhram_hero_title span:last-child,.AI {
            background: linear-gradient(to bottom, #1777E4, #60EFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            /* Optional for better browser support */
            background-clip: text;
            color: transparent;
        }

        .abhram_hero_subtitle {
            font-size: 1.8rem;
            margin-bottom: 50px;
            color: #ccc;
        }

        .abhram_card_wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            perspective: 1000px;
            flex-wrap: wrap;
        }

        .abhram_card {
            
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s;
        }

        .abhram_card:hover {
            transform: translateY(-10px);
        }

        .abhram_card_inner {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
        }

        .abhram_card_img {
            width: 100%;
            max-width: 500px; /* Prevents it from getting too large on big screens */
            height: auto;      /* Maintains aspect ratio */
            margin-bottom: 15px;
        }


        .abhram_card_heading {
          color: white;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        /* hardware section */

.abhram_hardware_section {
  padding: 100px 0;
  background-color: white;
  color: #333;
  text-align: center;
}

.abhram_section_title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}

.abhram_section_subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

.abhram_hardware_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 250px;
}

.abhram_chip_img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.abhram_feature_box {
  padding: 15px 25px;
  background-color: #d7ffde;
  border-radius: 10px;
  color: #333;
  font-weight: 500;
  min-width: 150px;
  text-align: center;
}
@media (max-width: 768px) {
       .abhram_hero {
            height: 100% !important;
            
        }
  .abhram_hardware_grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .column {
    flex-direction: row;
    justify-content: center;
    height: auto;
    gap: 20px;
    flex-wrap: wrap;
  }

  .abhram_chip_img {
    width: 180px;
    height: 180px;
  }

  .abhram_feature_box {
    margin: 10px;
    flex: 1 1 130px;
  }
}

        /* Applications Section */
        /* .abhram_applications_section {
            padding: 100px 0;
            background-color: #f9f9f9;
            color: #333;
            text-align: center;
        }

        .abhram_applications_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .abhram_app_card {
            background-color: #222;
            border-radius: 15px;
            overflow: hidden;
            padding: 20px;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            height: 180px;
            position: relative;
        }

        .abhram_app_card h3 {
            color: #40c9ff;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .abhram_app_card.abhram_industrial h3,
        .abhram_app_card.abhram_custom h3 {
            color: #ff5baa;
        }

        .abhram_app_card.abhram_home h3,
        .abhram_app_card.abhram_environmental h3 {
            color: #4caf50;
        }

        .abhram_app_card p {
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0.8;
        }

        .abhram_app_image {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 80px;
            height: 80px;
            object-fit: contain;
        } */

        .abhram_applications_flex {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 50px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 40px;
  background-color: #FFFFFF;
}
.abhram_applcqtiona_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    padding-bottom: 20px;
}
.abhram_applcqtiona_header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
      background: linear-gradient(90deg, #60EFFF, #2E6EFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
   
}
.abhram_applcqtiona_header p {
    font-size: 1rem;
    color: black;
    margin-bottom: 30px;
}

.abhram_app_item {
  display: flex;
  
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.abhram_app_item.reverse {
  flex-direction: row-reverse;
}

.abhram_app_card {
  background-color: #1c1c1c;
  color: #fff;
  border-radius: 20px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  width: 400px;
  max-width: 100%;
  text-align: left;
}

.abhram_app_card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.abhram_app_card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.abhram_app_sideimg {
  width: 180px;
  max-width: 100%;
  height: 180px;
}

.abhram_app_card.abhram_home h3,
.abhram_app_card.abhram_environmental h3 {
  color: #4caf50;
}

.abhram_app_card.abhram_industrial h3 {
  color: #f44336;
}

.abhram_app_card.abhram_custom h3 {
  color: #ffc107;
}

.abhram_app_card.abhram_data h3 {
  color: #9c27b0;
}

/* Swipe Indicator Container */
.swipe-indicator-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

/* Swipe Indicator Styles */
.swipe-indicator {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    gap: 10px;
    animation: fadeInOut 2s ease-in-out infinite;
}

.swipe-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.swipe-arrow {
    animation: slideRight 1.5s ease-in-out infinite;
    color: #2E6EFF;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .abhram_app_item.reverse {
    justify-content: center;
  }
    .swipe-indicator {
        display: flex; /* Show only on mobile */
    }
    
    .abhram_applications_flex {
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
        padding-left: 20px;
        padding-right: 20px;
        gap: 30px;
        position: relative;
    }

    .abhram_applications_flex::-webkit-scrollbar {
        height: 6px;
    }

    .abhram_applications_flex::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .abhram_applications_flex::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .abhram_applications_flex::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .abhram_app_item {
        flex: 0 0 auto;
        width: 300px;
        margin-right: 20px;
        justify-content: center;
    }
}


        /* Responsive */
        @media (max-width: 768px) {
            .abhram_hero_title {
                font-size: 2.2rem;
            }
            
            .abhram_card {
                width: 400px;
                height: auto;
            }
            
            .abhram_hardware_content {
                flex-direction: column;
            }
            
           
            
            .abhram_section_title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .abhram_hero_title {
                font-size: 1.8rem;
            }
            
            .abhram_hero_subtitle {
                font-size: 1rem;
            }
            
            .abhram_card {
                width: 100%;
            }
            
            .abhram_feature_box {
                width: 100%;
                margin-bottom: 10px;
            }
        }



/* micro codex section */

.micro_codex_section {
     position: relative;
  padding: 60px 20px;
  overflow-x: hidden;
 
}

.micro_codex_container {
    
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  overflow: hidden;
}

.micro_codex_text {
  flex: 1;
  text-align: left;
}

.micro_codex_text h2 {
  font-size: 2.5rem;
  
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #60EFFF, #407BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}

.micro_codex_text p {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.6;
}

.micro_codex_image {
  flex: 1;
  text-align: center;
}

.micro_codex_image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive layout */
@media (min-width: 768px) {
  .micro_codex_container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .micro_codex_text, .micro_codex_image {
    max-width: 50%;
  }
}

.glow-micro {
  position: absolute;
  opacity: 0.6;
  z-index: 0;
  background: radial-gradient(circle, #3C8CE7, #000000);
    filter: blur(40px);
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 20s infinite;
}

.glow1-micro {
  width: 300px;
  height: 300px;
 
}

.glow2-micro {
  width: 200px;
  height: 200px;
 
  right: 100px;
}

.glow3-micro {
  width: 250px;
  height: 250px;
  
  left: 50%;
}

