/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #3d4c5c;
    line-height: 1.6;
}

.container {
      max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.containers {
     background-image: url(./src/assets/ChatGPT\ Image\ Sep\ 2\,\ 2025\,\ 08_43_53\ PM.png);
}

/* Top Banner */
.top-banner {
    background-color: #074173;
    color: #ffffff;
    padding: 0.85rem 0;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.895rem;
}

.banner-text {
    text-align: center;
    margin-right: 1rem;
}

.banner-btn {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Navigation */
.navigation {
    background-color: #ffffff;
  
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
   
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding-top: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d4c5c;
}

/* Mobile menu hidden by default */
.desktop-menu {
  display: none;
  flex-direction: column;
  background: #111; /* dark bg for mobile */
  position: absolute;
  top: 70px; /* navbar ke niche */
  left: 0;
  right: 0;
  padding: 20px;
  gap: 15px;
  z-index: 1000;
}

.desktop-menu.active {
  display: flex;
}

/* Desktop view me menu hamesha visible ho */
@media (min-width: 992px) {
  .desktop-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
  }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3d4c5c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #074173;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
    color: #074173;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    padding: 0.5rem;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #3d4c5c;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color:#074173;
}

.contact-btn {
    background-color: #3d4c5c;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(61, 76, 92, 0.9);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #3d4c5c;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
    background-image: url(./src/assets/ChatGPT\ Image\ Sep\ 2\,\ 2025\,\ 09_39_23\ PM.png);
    height: 100vh;
}

.hero-tagline {
    color: #074173;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #3d4c5c;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 64rem;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

/* Service Cards */
.service-cards {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #074173;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    group: true;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 3rem;
    height: 3rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d4c5c;
    margin-bottom: 1rem;
}

.card-description {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-cta {
    display: flex;
    align-items: center;
    color: #3d4c5c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .card-cta {
    color: #074173;
}

.card-cta span {
    margin-right: 0.5rem;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .arrow-icon {
    transform: translateX(0.25rem);
}

.container2{
    display: flex;
}
/* Hardware Gallery */
.hardware-gallery {
    padding: 4rem 0;
    background-color: #ffffff;
}



.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.section-subtitle {
        Color: #074173;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}
.section-subtitles{
    color: #58595d;
    letter-spacing: .15rem;
    text-transform: uppercase;
    font-weight: 500;

}

.section-title {
   
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.35;

}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 64rem;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.primary-btn {
    background-color: #3d4c5c;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: rgba(61, 76, 92, 0.9);
}

.partner-logo img {
    height: 7rem;
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .container2 {
    flex-direction: column; /* stack items */
    align-items: center;
  }

  .gallery-item {
    flex: 1 1 calc(50% - 1rem); /* 2 per row */
  }

  .features-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .primary-btn {
    width: 100%;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%; /* full width */
  }

  .feature-icon img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .primary-btn {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
  }
}

/* Feature Grid */
.feature-grid {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
     display: grid;
    grid-template-columns: repeat(2, 1fr); /* exactly 2 cards per row */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto; /* center align */
}

.feature-item {
    text-align: center;
    display: flex;
        grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    background-color: #f7f8fa;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    display: flex
;
    box-shadow: 0 0 0 2px #e9ebf1, inset 0 0 0 4px #fff;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 5rem;
    height: 5rem;
    
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}


/* Data Center Section */
.data-center-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-content {
    max-width: 64rem;
    margin: 0 auto;
}

.dots-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.dots-icon img {
    width: 4rem;
    height: 4rem;
}

.data-center-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-list {
   
    margin-bottom: 3rem;
}

.features-list .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
}

.features-list .feature-item img {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.features-list .feature-item p {
    color: #64748b;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
}

.outline-btn {
    background-color: #3d4c5c;
    color: white;
    border: 1px solid #3d4c5c;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.outline-btn:hover {
    background-color: #3d4c5c;
    color: #ffffff;
}
/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .features-list .feature-item {
    flex-direction: column; /* stack icon & text */
    align-items: flex-start;
  }

  .features-list .feature-item img {
    margin: 0 0 0.5rem 0; /* move icon above text */
  }

  .dots-icon img {
    width: 3rem;
    height: 3rem;
  }

  .outline-btn {
    width: 100%; /* full width button */
    max-width: 300px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .section-content {
    padding: 0 1rem;
  }

  .dots-icon img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .outline-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}

/* Cloud Section */
.section {
      background-color: #16212b;
      padding: 60px 40px;
      border-radius: 12px;
      max-width: 1200px;
      margin: 50px auto;
    }

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

    .header-text h4 {
      font-size: 14px;
      letter-spacing: 1px;
      color: #cccccc;
      margin: 0 0 15px 0;
    }

    .header-text .chnage {
      letter-spacing: .1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.13;
    
    }
    span{
        color: white;
    }

    .highlight {
      color:white; /* orange highlight */
    }

    .header-text p {
      font-size: 15px;
      color: #d3d3d3;
      margin-top: 20px;
      line-height: 1.6;
      max-width: 500px;
    }

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

    .card {
      background-color: #0c131d;
      border-radius: 12px;
      padding: 20px;
      text-align: left;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .card p {
      font-size: 14px;
      color: #cfcfcf;
      line-height: 1.6;
    }

    .card a {
      display: inline-block;
      margin-top: 15px;
      font-size: 14px;
      font-weight: 600;
      color: white;
      text-decoration: none;
    }

    .card a:hover {
      color: #f05b44;
    }
    /* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
    margin: 30px auto;
  }

  .header-text .chnage {
    font-size: 2rem;
    line-height: 1.2;
  }

  .header-text h4 {
    font-size: 13px;
  }

  .header-text p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .section {
    padding: 30px 15px;
    border-radius: 8px;
  }

  .header-text {
    display: flex
;
        flex-direction: column;
        text-align: center;
  }

  .header-text .chnage {
    font-size: 1.6rem;
  }

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

  .header-text p {
    font-size: 12.5px;
  }
}
/* Integrated Solutions */
 .sections {
      max-width: 1200px;
      margin: 80px auto;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
.text-content {
      flex: 1;
    }

    .text-content h2 {
      letter-spacing: .1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.13;
    }

    .text-content p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 550px;
    }

    .features {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .feature {
      font-size: 20px;
      color: #111;
      padding: 15px;
      border-left: 2px solid #000;
    }

    .feature.highlight {
      background-color: #f2f6f9;
      font-weight: 600;
    }

    .image-content {
      flex: 1;
    }

    .image-content img {
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      display: block;
      margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .sections {
        flex-direction: column;
        text-align: center;
      }

      .text-content {
        order: 1;
      }

      .image-content {
        order: 2;
      }

      .features {
        align-items: center;
      }

      .feature {
        width: 100%;
        text-align: center;
        border-left: none;
        border-top: 2px solid #000;
      }
    }

/* CTA Section */
 .cta-section {
      background: url("./src/assets/ChatGPT\ Image\ Sep\ 2\,\ 2025\,\ 09_39_23\ PM.png") no-repeat center center/cover;
      text-align: center;
      padding: 120px 20px;
      color: #111;
      position: relative;
    }

    .cta-section h2 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .cta-section button {
      background: transparent;
      border: 1px solid #111;
      border-radius: 25px;
      padding: 12px 25px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta-section button:hover {
      background: #111;
      color: #fff;
    }
  
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cloud-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cloud-feature.reverse {
        direction: ltr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-with-logo {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .banner-text {
        font-size: 0.75rem;
        margin-right: 0.5rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-with-logo {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 8rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 3.5rem;
    }
}
/* footer */
    .footer {
      background-color: white;
      padding: 60px 80px 30px 80px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      
    }
   

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-left {
      max-width: 280px;
    }

    .footer-left h2 {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
    }

    .footer-left .stock {
      margin: 10px 0;
      font-size: 14px;
      color: #f05b44;
      font-weight: 600;
    }

    .footer-left button {
      margin-top: 15px;
      background: transparent;
      border: 1px solid #fff;
      padding: 10px 20px;
      border-radius: 25px;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .footer-left button:hover {
      background: #fff;
      color: #000;
    }

    .footer-center {
      display: grid;
      grid-template-columns: repeat(4, auto);
      gap: 60px;
      flex: 1;
    }

    .footer-center ul {
      list-style: none;
      margin: 0;
      padding: 0;
     
    }

    .footer-center ul li {
      margin-bottom: 12px;
      font-size: 14px;
      color: black;
      cursor: pointer;
    }

    .footer-center ul li:hover {
      color: #fff;
    }

    .footer-center ul li.title {
      font-weight: 600;
      color: black;
      margin-bottom: 18px;
    }

    .footer-right img {
      width: 140px;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: #bbb;
    }

    .footer-bottom a {
      color: #bbb;
      text-decoration: none;
      margin-left: 15px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .socials a img {
      width: 20px;
      height: 20px;
      filter: invert(1);
    }
    .social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background: #ff6600; /* DigiPower X orange theme */
  color: #fff;
}


    /* Responsive */
    @media (max-width: 900px) {
      .footer-center {
        grid-template-columns: repeat(2, auto);
        gap: 30px;
      }
    }

    @media (max-width: 600px) {
      .footer {
        padding: 40px 20px;
      }

      .footer-center {
        grid-template-columns: 1fr;
      }
    }