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

html,body{
  height:100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

body{
  margin:0;
  padding: 0;
  background:#000;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

body.nav-fixed {
  padding-top: var(--nav-height);
}


/* Brand Section */
.brand-section {
  background-image: url('images/secondpart.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: visible;
  padding-top: 20px;
} 

/* Decorative circles */
.brand-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(70, 90, 120, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  z-index: 1;
}

/* Navbar */
:root {
  --nav-height: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  padding: 0 40px;
  position: relative;
  background: transparent;
  z-index: 10;
  flex-wrap: wrap;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #0066FF;
}

.mobile-menu .contact-btn {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-nav span {
  width: 126.11px;
  height: 19.04px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-family: 'Poppins', sans-serif;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;

  /* SVG background */
  background: url("images/nav.svg") no-repeat center;
  background-size: contain;

  padding: 15px 15px;
  position: relative;
}

/* keep text above svg */
.nav-links a {
  position: relative;
  z-index: 1;
}


.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-family: 'Poppins', sans-serif;
  white-space: wrap;
}

.nav-links a:hover {
  color: #4a7cff;
}

.contact-btn {
  background: #0055F0;
  color: white;
  padding: 8px 24px;
  border-radius: 5px;  /* Changed from 25px to 5px for rectangular shape */
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
}

        .contact-btn:hover {
            background: #0052CC;
        }

/* Brand Content */
.brand-content {
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.brand-heading-svg {
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
}

.subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.guest-btn {
  background: #0055F0;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
}

.guest-btn:hover {
  background: #0052CC;  /* Changed from #3a6ce6 to #0052CC to match */
}

.guest-btn i {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
        position: relative;
        z-index: 1000;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }

    .menu-overlay.active {
        display: block;
    }

    .nav-links {
        display: none
}
.contact-btn {
        display: none;
    }
}

/* Craft Section */
.craft-section {
  background: #000;
  min-height: 60vh;
  text-align: center;
  position: relative;
}

.craft-content {
  padding: 60px 0 0;
}

.craft-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Tabs */
.craft-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.craft-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.craft-tab:hover {
  color: rgba(255,255,255,0.7);
}

.craft-tab.active {
  color: #fff;
}

.craft-tab.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

/* Color variations for active tabs */
.craft-tab[data-tab="brand"].active {
  color: #19C5CC;
}

.craft-tab[data-tab="creative"].active {
  color: #4A7CFF;
}

.craft-tab[data-tab="digital"].active {
  color: #FFA500;
}

.craft-tab[data-tab="social"].active {
  color: #A855F7;
}

/* Panel */
.craft-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 24px;
  background: radial-gradient(
      circle at top right,
      rgba(74,124,255,0.12),
      rgba(0,0,0,0.9)
  );
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.panel-title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-align: center;
}

/* common background behavior */
.panel-title::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);

    width: 300px;
    height: 75px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: -1;
}
/* BRAND HOUSE */
.panel-title[data-panel="brand"]::after {
    background-image: url("images/brandhouse.svg");
}

/* CREATIVE STUDIO */
.panel-title[data-panel="creative"]::after {
    background-image: url("images/creativestudio.svg");
}

/* DIGITAL FACTORY */
.panel-title[data-panel="digital"]::after {
    background-image: url("images/digitalfactory.svg");
}

/* SOCIAL & INFLUENCE HUB */
.panel-title[data-panel="social"]::after {
    background-image: url("images/socialinfluencehub.svg");
}


.panel-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Cards */
.panel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.panel-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(74,124,255,0.25);
}

/* Hover colors for each section */
.panel-cards[data-section="brand"] .panel-card:hover {
  border-color: #19C5CC;
  box-shadow: 0 10px 30px rgba(25,197,204,0.25);
}

.panel-cards[data-section="creative"] .panel-card:hover {
  border-color: #4A7CFF;
  box-shadow: 0 10px 30px rgba(74,124,255,0.25);
}

.panel-cards[data-section="digital"] .panel-card:hover {
  border-color: #FFA500;
  box-shadow: 0 10px 30px rgba(255,165,0,0.25);
}

.panel-cards[data-section="social"] .panel-card:hover {
  border-color: #A855F7;
  box-shadow: 0 10px 30px rgba(168,85,247,0.25);
}

.panel-card-icon {
  display: block;
  margin: 0 auto 20px;
  width: 50px;
  height: 50px;
}

.panel-card h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .craft-tabs {
      gap: 30px;
  }

  .craft-tab {
      font-size: 12px;
  }

  .craft-title {
      font-size: 32px;
      margin-bottom: 50px;
  }

  .craft-panel {
      padding: 40px 20px;
  }

  .panel-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }
}

/* OUR WORK */
.our-work-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 20px;
            gap: 58px;
            width: 100%;
            min-height: 100vh;
            background: radial-gradient(109.8% 100.05% at 50% 0%, #000104 41.94%, #0055F0 100%);
        }

        .section-titles {
            font-family: 'Poppins';
            font-weight: 600;
            font-size: 48px;
            line-height: 120%;
            text-align: center;
            color: #FFFFFF;
            width: 100%;
            max-width: 1280px;
            margin-top: 60px;
        }

        .work-container {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
            max-width: 1280px;
        }

        .work-row {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            gap: 31px;
            width: 100%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .work-row::-webkit-scrollbar {
            display: none;
        }

        /* Card Base Styles */
        .work-card {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            padding: 48px;
            gap: 24px;
            background: rgba(5, 86, 234, 0.1);
            box-shadow: inset 0px 0px 44px rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            flex-shrink: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        /* First Row - AVER Card (Small) */
        .card-aver {
            width: 385px;
            height: 488px;
            align-items: flex-end;
        }

        /* First Row - BIGGY Card (Large) */
        .card-biggy {
            width: 864px;
            height: 488px;
            align-items: flex-start;
        }

        /* Second Row - KOOR Card (Medium) */
        .card-koor {
            width: 577px;
            height: 488px;
            align-items: flex-start;
        }

        /* Second Row - Social Media Card */
        .card-social {
            width: 367px;
            height: 488px;
            align-items: flex-start;
        }

        /* Second Row - Column Container */
        .card-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 274px;
            height: 488px;
        }

        .card-mini {
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            background: rgba(5, 86, 234, 0.1);
            box-shadow: inset 0px 0px 44px rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            flex: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            position: relative;
        }


        .card-mini img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-position: center;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* Brand Header Styles */
        .brand-header {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 18px;
            width: 100%;
        }

        .brand-logo {
            width: 64px;
            height: 64px;
            flex-shrink: 0;
        }

        .brand-info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .brand-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 28px;
            line-height: 140%;
            letter-spacing: -0.02em;
            color: #FFFFFF;
        }

        .brand-tagline {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 16px;
            line-height: 140%;
            letter-spacing: -0.02em;
            color: #B1B9CF;
        }

        /* AVER Card Specific */
        .aver-content {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 24px;
            flex: 1;
        }

        .aver-preview img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .aver-logo {
            font-family: 'Nunito Sans', sans-serif;
            font-weight: 800;
            font-size: 38px;
            line-height: 140%;
            letter-spacing: 0.04em;
            color: #F2F7F7;
        }

        .color-palette {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .color-item {
            display: flex;
            flex-direction: column;
            flex: 1;
            background: #FFFFFF;
            border: 4px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0px 1px 2px rgba(9, 25, 72, 0.13), 0px 0px 0px 1px rgba(18, 55, 105, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        .color-swatch {
            width: 100%;
            height: 75px;
        }

        .color-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 12px;
            gap: 2px;
        }

        .color-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #36394A;
        }

        .color-code {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            text-transform: uppercase;
            color: #666D80;
            opacity: 0.5;
        }

        /* BIGGY Card Specific */
        .biggy-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .biggy-content {
            width: 100%;
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .biggy-media-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .biggy-main {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .biggy-thumbnail,
        .biggy-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            border-radius: 20px;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            pointer-events: auto;
        }

        .biggy-video[controls] {
            pointer-events: auto;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 35%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: #0055F0;
            border: 4px solid #FAFAFA;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .play-button::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .play-button:hover {
            background: rgba(0, 85, 240, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .fullscreen-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .fullscreen-button:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        /* KOOR Card Specific */
        .koor-preview {
            width: 100%;
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
        }

        .koor-preview img {
            width: 100%;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* Social Media Card */
        .social-preview {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
        }

        .social-preview img {
            width: 100%;
            object-fit: cover;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* Mini Cards */
        .mini-black {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .mini-black img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .mini-more {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .more-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            font-size: 36px;
            line-height: 140%;
            color: #FFFFFF;
            text-align: center;
            z-index: 1;
        }

        .plus-icon {
            position: absolute;
            width: 42px;
            height: 42px;
            right: 20px;
            top: 20px;
            color: #FFFFFF;
            font-size: 42px;
            font-weight: 300;
            z-index: 2;
        }

        .fade-out {
            animation: fadeOut 0.5s ease-out forwards;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in forwards;
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive Styles */
        @media (max-width: 1400px) {
            .our-work-section {
                padding: 20px 20px;
            }
            
            .work-row {
                gap: 24px;
                overflow-x: auto;
                justify-content: flex-start;
            }
            
            .card-aver,
            .card-biggy,
            .card-koor,
            .card-social,
            .card-column {
                flex-shrink: 0;
            }
        }

        @media (max-width: 1024px) {
            .our-work-section {
                padding: 20px 20px;
                gap: 30px;
            }

            .section-title {
                font-size: 36px;
            }

            .work-card {
                padding: 32px;
            }

            .card-aver,
            .card-biggy,
            .card-koor,
            .card-social {
                min-width: 320px;
                width: auto;
            }

            .card-column {
                min-width: 280px;
            }

            .work-row {
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .our-work-section {
                padding: 20px 20px;
                gap: 20px;
            }

            .section-title {
                font-size: 28px;
            }

            .work-container {
                gap: 16px;
            }

            .work-row {
                gap: 16px;
                padding-bottom: 10px;
            }

            .work-card {
                padding: 24px;
                min-width: 300px;
            }

            .card-aver,
            .card-biggy,
            .card-koor,
            .card-social {
                min-width: 300px;
                max-width: 320px;
            }

            .card-column {
                min-width: 300px;
                max-width: 320px;
            }

            .brand-name {
                font-size: 24px;
            }

            .brand-tagline {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .our-work-section {
                padding: 20px 20px;
            }

            .section-title {
                font-size: 24px;
            }

            .work-card {
                padding: 20px;
                min-width: 280px;
            }

            .card-aver,
            .card-biggy,
            .card-koor,
            .card-social {
                min-width: 280px;
                max-width: 300px;
            }

            .card-column {
                min-width: 280px;
                max-width: 300px;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-tagline {
                font-size: 12px;
            }

            .play-button {
                width: 80px;
                height: 80px;
            }

            .play-button::before {
                border-left: 18px solid white;
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
            }
        }
/* Our Method Section */
        .values-section {
            width: 100%;
            position: relative;
            background: #0055f0;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: 80px 40px;
        }

        /* Background Pattern */
        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .values-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Title Styling */
        .section-title {
            width: 100%;
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            font-size: 48px;
            line-height: 120%;
            text-align: center;
            color: #FFFFFF;
            flex: none;
            order: 0;
            align-self: stretch;
            margin-bottom: 60px;
        }

        /* Cards Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Card Styling */
        .card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 2rem;
            padding: 6rem 3rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
        }

        .card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
            border: 2px solid #ffffff;
        }

        .icon-circle {
            width: 5rem;
            height: 5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-circle svg {
            width: 100%;
            height: 100%;
            filter: brightness(0) invert(1);
            margin-bottom: 40px;
        }

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

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            text-align: left;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
        }

        .card-description {
            font-size: 1rem;
            font-weight: 300;
            text-align: left;
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .values-section {
                padding: 60px 30px;
            }

            .section-title {
                font-size: 52px;
                margin-bottom: 50px;
            }

            .values-grid {
                gap: 20px;
            }

            .card {
                padding: 4rem 3rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .values-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 40px;
                margin-bottom: 40px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 3.5rem 2rem;
                min-height: 280px;
            }

            .icon-circle {
                width: 4rem;
                height: 4rem;
            }

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

            .card-description {
                font-size: 0.95rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .section-title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .card {
                padding: 3rem 2rem;
                gap: 1.5rem;
            }
        }
/* Blog Section */
.blog-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.blog-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Section Title */
.blog-title {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.03em;
    color: #090A0C;
    margin: 0;
}


/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Blog Card */
.blog-card {
    background-color: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Blog Header */
.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.blog-icon-blue {
            background-color: #3b82f6;
        }

.blog-icon-purple {
            background-color: #7c3aed;
        }
.blog-icon-pink {
            background-color: #D71AFD;
        }

.blog-read-time {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
}

/* Blog Card Title */
.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    min-height: 110px;
}

/* Blog Footer */
.blog-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

/* Blog Excerpt */
.blog-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* CTA Button */
.blog-cta-button {
    width: 60px;
    height: 54px;
    padding: 10px 10px;
    background-color: #0066FF;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.blog-cta-button:hover {
    background-color: #2563eb;
    transform: scale(1.05);
}

.blog-cta-button:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }
    
    .blog-content {
        gap: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 40px;
    }
    
    .blog-card {
        padding: 28px;
    }
    
    .blog-card-title {
        font-size: 24px;
        min-height: auto;
    }
    
    .blog-cta-button {
        width: 80px;
        height: 48px;
    }
}

.faq-section {
  background: #f5f5f5;  /* Changed from #ffffff to match blog section */
  padding: 80px 20px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 80px;
  font-family: 'Poppins';
  color: #000;
}

.faq-item {
  border-bottom: 1px solid #2e3440;
  padding: 30px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.faq-question span:first-child {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

.faq-icon {
  font-size: 30px;
  font-weight: 400;
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #8a8f98;
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.contact-section {
            width: 100%;
            background-image: url('images/Contact us background.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 140px 20px;
            position: relative;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        .contact-card {
            width: 100%;
            max-width: 1000px;
            display: flex;
            gap: 60px;
            padding: 48px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(2.5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
        }

        /* LEFT */
        .contact-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 120px;
        }

        .contact-left h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 50px;
            font-weight: 600;
            color: #fff;
            white-space: wrap;
        }

        /* RIGHT */
        .contact-right {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 300;
            color: #ffffff;
        }

        /* FORM */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #3b82f6;
        }

        .form-group small {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            padding-left: 6px;
            font-family: 'Poppins', sans-serif;
        }

        /* BUTTON */
        .contact-button {
            margin-top: 12px;
            padding: 16px;
            background: #2563eb;
            border: none;
            border-radius: 14px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .contact-button:hover:not(:disabled) {
            background: #1d4ed8;
        }

        .contact-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* GLASS LOGO */
        .glass-logo {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
        }

        .contact-logo {
            width: 120px;
            height: auto;
            display: block;
            opacity: 0.9;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

        .contact-logo:hover {
            transform: scale(1.05);
            transition: 0.3s ease;
        }

        /* SUCCESS/ERROR MESSAGES */
        .success-message, .error-message {
            padding: 15px 20px;
            border-radius: 14px;
            margin-bottom: 10px;
            text-align: center;
            font-size: 15px;
            font-weight: 500;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            position: absolute;
            top: -60px;
            left: 0;
            right: 0;
        }

        .success-message {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.5);
            color: #22c55e;
        }

        .error-message {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.5);
            color: #ef4444;
        }

        .success-message.show, .error-message.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .contact-right {
            position: relative;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .contact-card {
                flex-direction: column;
            }

            .contact-right {
                width: 100%;
            }

            .contact-left {
                gap: 40px;
            }

            .contact-left h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 600px) {
            .contact-section {
                padding: 80px 20px;
            }

            .contact-card {
                padding: 32px 24px;
                gap: 40px;
            }

            .contact-left h2 {
                font-size: 28px;
                white-space: normal;
            }

            .contact-subtitle {
                font-size: 16px;
            }
        }


    .footer {
      background: #000000;
      width: 100%;
      padding: 60px 40px 30px;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* Logo */
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 60px;
    }

    /* Navigation Section */
    .footer-section {
      margin-bottom: 50px;
    }

    .footer-section-title {
      font-size: 11px;
      text-transform: uppercase;
      color: #666666;
      margin-bottom: 20px;
      letter-spacing: 1.5px;
      font-weight: 400;
    }

    .footer-nav {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-nav a {
      color: #ffffff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 300;
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: #3b82f6;
    }

    /* Contact Section */
    .footer-contact {
      display: flex;
      gap: 50px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-item svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .footer-item span,
    .footer-item a {
      color: #ffffff;
      font-size: 16px;
      font-weight: 300;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-item a:hover {
      color: #3b82f6;
    }

    /* Divider */
    .footer-divider {
      height: 1px;
      background: #1a1a1a;
      margin: 40px 0;
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #666666;
      font-weight: 300;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer {
        padding: 40px 20px 20px;
      }

      .footer-nav {
        gap: 30px;
      }

      .footer-contact {
        gap: 30px;
      }

      .footer-nav a,
      .footer-item span,
      .footer-item a {
        font-size: 16px;
      }
    }

    @media (max-width: 500px) {
      .footer-nav {
        flex-direction: column;
        gap: 20px;
      }

      .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }
