@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
/* Reset and Base Styles */

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


/* body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
} */

body {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 200;
    /* font-size: 14px; */
    
}

body p {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    color:rgba(255, 255, 255, 0.7)!important;
    /* font-weight: 200; */
    /* font-size: 14px; */
}

body ul li {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    color:rgba(255, 255, 255, 0.7)!important;
    font-weight: 200; 
    font-size: 14px;
}


body a {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    /* overflow-x: hidden; */
    color:rgba(255, 255, 255, 0.7)!important;
    font-weight: 400; /* ExtraLight weight */
    font-size: 14px;
}

body h1 {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    color:rgba(255, 255, 255, 1)!important;
    font-weight: 400; /* ExtraLight weight */
    font-size: 100px;
}




body .section-title {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    color:rgba(255, 255, 255, 1)!important;
    font-weight: 400; /* ExtraLight weight */
    font-size: 50px;
    text-align: center;
}

body .section-subtitle {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* background-color: #0a0a0a; */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    color:rgba(255, 255, 255, 1)!important;
    font-weight: 400; /* ExtraLight weight */
    font-size: 18px;
}


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

.nav_container {
max-width: 90%;
margin: 0 auto;
padding: 0 20px;
}

.container2 {
/* max-width: 1200px; */
margin: 0 auto;
padding: 0 20px;
}
.transbg {
  border-radius: 10px;
    background: rgba(15, 15, 15, 0.7);
}
/* Header */
.header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: rgba(10, 10, 10, 0.5);
backdrop-filter: blur(20px);
/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
transition: all 0.3s ease;
}

.header.scrolled {
background: rgba(10, 10, 10, 0.9);
}

.nav {
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}

.logo {
font-size: 24px;
font-weight: bold;
color: #ffffff;
}

.logo-img {
height: 40px;
width: auto;
object-fit: contain;
margin-top: 10px;
}

.nav-links {
display: flex;
gap: 32px;
}

.nav-link {
color: rgba(255, 255, 255, 1);
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}

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

.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #3b82f6, #10b981);
transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  /* height: 110%; */
}

.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1100;
}

.mobile-menu-btn span {
width: 24px;
height: 2px;
background: #ffffff;
transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
display: none;
padding: 16px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-link {
display: block;
padding: 8px 0;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s ease;
}

.mobile-nav-link:hover {
color: #ffffff;
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
padding: 0 20px;
}

.hero-content {
max-width: 1200px;
animation: fadeInUp 1s ease-out;
}

.hero-title {
/* font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: bold; */
margin-bottom: 24px;
color: #ffffff;
}

.hero-subtitle {
/* font-size: clamp(16px, 2vw, 18px); */
/* color: rgba(255, 255, 255, 0.7); */
margin-bottom: 32px;
line-height: 1.7;
font-size: 18px;
color: rgba(255, 255, 255, 1) !important;
font-weight: 400;
}

.cta-button {
padding: 16px 32px;
background: linear-gradient(135deg, #000, #000);
color: #ffffff;
border:2px;
border-color: #fff;
border-radius: 2px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}

.cta-button:hover::before {
left: 100%;
}

/* Sections */
section {
padding: 96px 0;
}

.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: bold;
margin-bottom: 24px;
color: #ffffff;
}

.section-title span {
color: #ffffff;
}

.section-subtitle {
font-size: clamp(16px, 2vw, 18px);
color: rgba(255, 255, 255, 0.7);
max-width: 600px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 64px;
}

/* Glass Card Effect */
.glass-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.9);
border-radius: 12px;
transition: all 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

.glass-card:hover {
/* background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

/* About Section */
.about-item {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 24px;
text-align: center;
transition: all 0.3s ease;
}

.about-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-item h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 16px;
color: #ffffff;
}

.about-item p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
font-size: 14px;
}

.about {
padding: 120px 0;
color: white;
}

.about-single-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
margin-top: 60px;
flex-wrap: wrap;
}

.about-title {
flex: 0 0 auto;
}

.about-title .section-title {
margin: 0;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
}

.about-description {
flex: 1;
max-width: 500px;
}

.about-description .section-subtitle {
margin: 0;
font-size: clamp(1rem, 2vw, 1.125rem);
color: #B0B0B0;
line-height: 1.7;
}

.about-logo {
flex: 0 0 auto;
display: flex;
justify-content: center;
align-items: center;
}

.about-logo-img {
max-width: 350px;
width: 100%;
height: auto;
filter: brightness(0) invert(1);
opacity: 0.3;
}

/* Brand Showcase */
/* Brand Showcase */
.brand-showcase {
    background: rgba(55, 65, 81, 0.1);
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0 auto;
}




.brand-card-overlay {
    width: 380px;
    height: 82px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #006A8A90, #7B109890);
    transition: all 0.3s ease;
    /* overflow: hidden; */
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
    position: absolute;
    z-index: 5;
   visibility: hidden;
    transform: translateY(10px); /* small slide effect */
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.brand-card {
    width: 380px;
    height: 607px;
    display: flex;  
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.brand-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* Vertical fading on top & bottom */
        background: linear-gradient(
            to bottom,
            rgba(10,10,10,0.76) 0%,
            rgba(10,10,10,0) 18%,
            rgba(10,10,10,0) 82%,
            rgba(10,10,10,0.76) 100%
        );
        z-index: 2;
}


.brand-card:hover .brand-card-overlay{
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    visibility :visible;
    /* transform: translateY(0); */
}

.brand-card img {
      z-index: 1;
     display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: grayscale(100%); /* Black and white by default */
    -webkit-filter: grayscale(100%); /* Safari support */
}



.brand-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%); /* Full color on hover */
    -webkit-filter: grayscale(0%); /* Safari support */
}


/* /////////////////////////// */



/* Two-column layout: tabs left, panels right */
.xr-services .xr-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

/* Tabs column (vertical) */
.xr-services .tabs-col .tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xr-services .glass-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 0px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: left;
  width: 100%;
}

.xr-services .glass-tab img {
      width: 64px;
    height: 64px;
  object-fit: contain;
  filter: brightness(1) invert(1);
  opacity: 0.9;
}

.xr-services .glass-tab:hover,
.xr-services .glass-tab.is-active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Panels column */
.xr-services .panels-col .tab-panel {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.5s ease-out;
  height: 375px;
}

/* Keep your existing split for image + content */
.xr-services .service-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.xr-services .service-split .media img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* //////////////DROP DOWN MENU START///////////*/
/* Dropdown Navigation - matches your SORA font theme */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin-top: 8px;
    padding: 8px 0;
    background: rgb(32, 32, 32); 
    /* backdrop-filter: blur(20px); */
    border:0.2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
    font-size: 14px;
}

.dropdown-item:hover {
    color: #ffffff !important;
    background: rgba(13, 13, 13, 0.9);
    /* transform: translateX(4px); */
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-trigger {
    position: relative;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.mobile-dropdown-trigger::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-trigger::after {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 8px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-dropdown {
        display: none;
    }
}


/* /////////////DROP DOWN MENU END////////////////// */

/* XR Services Layout */
.xr-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.tabs-col .tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: left;
  width: 100%;
}

.glass-tab img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.glass-tab:hover,
.glass-tab.is-active {
  /* background: rgba(255,255,255,0.08); */
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.tab-panel {
  padding: 24px;
  border-radius: 12px;
  /* background: rgba(255,255,255,0.05); */
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.5s ease-out;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.service-split .media img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.service-split .copy h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
}

.service-split .copy p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.6;
   font-weight: 200; 
    font-size: 14px;
}

.service-split .copy ul {
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
}

.service-split .copy ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .xr-layout {
    grid-template-columns: 1fr;
  }
  .service-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-split .media img {
    max-height: 240px;
  }
}

@media (max-width: 640px) {
  .glass-tab {
    padding: 10px 12px;
  }
  .glass-tab img {
    width: 24px;
    height: 24px;
  }
}


/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .xr-services .xr-layout {
    grid-template-columns: 1fr;
  }
  .xr-services .service-split {
    grid-template-columns: 1fr;
  }
  .xr-services .service-split .media img {
    max-height: 240px;
  }
}



/* ///////////////////////////////////////////// */
/* Why Section */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 32px;
max-width: 1000px;
margin: 0 auto;
}

.why-card {
display: flex;
gap: 16px;
padding: 24px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
transition: all 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

.why-card:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
flex-shrink: 0;
width: 48px;
height: 48px;
padding: 12px;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #3b82f6;
}

.why-content h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: #ffffff;
}

.why-content p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
font-size: 14px;
}

/* Clients Section */
.clients-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 24px;
align-items: center;
}

.client-card {
    transition: background-size 0.3s ease;
    background-size: 80%;  
    display: flex;
    /* align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box; */
}

.client-card:hover {
  /* background: rgba(255, 255, 255, 0.08); */
  background:url("/assets/images/Ellipse.png") no-repeat center/cover;
  background-size: 130%;

}

.client-card img {
max-width: 100%;
max-height: 140px;
object-fit: contain;
opacity: 1;
transition: opacity 0.3s ease;
}

.client-card:hover img {
  opacity: 1;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 10px;
    background: rgba(15, 15, 15, 0.7);


}

.contact-description {
font-size: clamp(16px, 2vw, 18px);
color: rgba(255, 255, 255, 0.7);
margin-bottom: 32px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 2px;
margin-bottom: 32px;
}

.contact-item {
display: flex;
align-items: center;
gap: 16px;
}

.contact-icon {
flex-shrink: 0;
width: 44px;
height: 44px;
padding: 12px;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #3b82f6;
}

.contact-item span,
.contact-item div {
color: rgba(255, 255, 255, 0.7);
}

.social-links {
display: flex;
gap: 16px;
}

.social-link {
width: 40px;
height: 40px;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
text-decoration: none;
transition: all 0.3s ease;
}

.social-link:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.2);
}

.contact-map {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}

.map-placeholder {
color: rgba(59, 130, 246, 0.5);
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.fade-in {
animation: fadeInUp 0.6s ease-out forwards;
}

.about-content-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
max-width: 1200px;
margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 1024px) {
.about-single-row {
flex-direction: column;
text-align: center;
gap: 30px;
}

.about-title .section-title {
font-size: 2.5rem;
}

.brand-grid {
flex-direction: column;
align-items: center;
}

.brand-card {
width: 100%;
max-width: 420px;
height: auto;
min-height: 300px;
}

.about-content-grid {
grid-template-columns: repeat(2, 1fr);
margin-top: 100px;
}
}

@media (max-width: 768px) {
.nav-links {
display: none;
}

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

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

.contact-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.brand-grid {
gap: 16px;
}

.brand-card {
height: auto;
min-height: 250px;
}

.why-grid {
grid-template-columns: 1fr;
grid-template-rows: auto;
}

.clients-grid {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 16px;
}

section {
padding: 64px 0;
}

.container, .nav_container, .container2 {
padding: 0 16px;
}

.about-description {
max-width: 100%;
}

.about-content-grid {
grid-template-columns: 1fr;
margin-top: 50px;
}

.section-header {
margin-bottom: 32px;
}
}

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

.brand-card {
min-height: 200px;
}

.about-image {
height: 150px;
}

.why-card {
flex-direction: column;
text-align: center;
}

.contact-item {
flex-direction: column;
text-align: center;
gap: 8px;
}

.cta-button {
    padding: 12px 24px;
    font-size: 14px;
}



.about-logo-img {
max-width: 150px;

}

.why-icon {
margin: 0 auto;
}

.about {
padding: 80px 0;
}

section {
padding: 48px 0;
}
}

@media (max-width: 320px) {
.hero-subtitle {
font-size: 14px;
}

.section-subtitle {
font-size: 14px;
}

.brand-card {
min-height: 150px;
}

.why-card {
padding: 16px;
}

.client-card {
padding: 12px;
min-height: 60px;
}

.contact-description {
font-size: 14px;
}
}

/* Contact Section - Updated Layout */
.contact {
    padding: 6px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info {
    /* No additional styling needed, inherits from existing styles */
}

.contact-description {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.contact-item span,
.contact-item div {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 0; /* Remove bottom margin to connect with map */
}

.social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Map Section - Now positioned right below social icons */
.contact-map-wrapper {
    margin-top: 0px; /* Space between social icons and map */
}

.map-title {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-map {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 320px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Contact Form Styles - Right Column */
.contact-form-container {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: fit-content;
    position: sticky;
    top: 240px; /* Stick to viewport when scrolling */
}

.contact-form-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-title {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 8px;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 200;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0 !important;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8));
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(16, 185, 129, 1));
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'SORA', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 48px;
    }
    
    .contact-form-container {
        position: static; /* Remove sticky positioning on smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .contact-map {
        height: 280px;
    }
    
    .contact-left-column {
        gap: 24px;
    }
    
    .contact-map-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .contact-map {
        height: 240px;
    }
    
    .map-title {
        font-size: 18px;
    }
    
    .contact-left-column {
        gap: 20px;
    }
}

