* {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-color: #000;
    color      : white;
    overflow-x : hidden;
}

/* Top bar */
.top-bar{
    color      : #fff;
    text-align : center;
    padding    : 8px 16px;
    background : #00BCD4; 
    background : -webkit-linear-gradient(to left, #0047FF, #00BCD4); 
    background : linear-gradient(to left, #0047FF, #00BCD4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-bar-text{
    font-weight   : 400;
    letter-spacing: 1px;
}
@media(min-width: 1200px){
    .top-bar-text{
        font-size: 14px;
    }
}
@media(max-width: 1199px) and (min-width: 992px){
    .top-bar-text{
        font-size: 13px;
    }
}
@media(max-width: 991px) and (min-width: 768px){
    .top-bar-text{
        font-size: 12px;
    }
}
@media(max-width: 767px) and (min-width: 576px){
    .top-bar-text{
        font-size: 11px;
    }
}
@media(max-width: 575px){
    .top-bar-text{
        font-size: 7px;
    }
    .top-bar{
        padding: 4px 8px;
    }
}

/********************************** TOPBAR ENDS HERE **************************************/

/* Navbar */
.navbar{
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    background-color: transparent;
    width           : 100%;
    max-width       : 1200px;
    padding         : 16px 20px;
    margin          : 0 auto;
}
.logo{
    display    : flex;
    align-items: center;
}
.logo img{
    height: 40px;
}
.nav-links{
    display    : flex;
    gap        : 32px;
    align-items: center;
}
/* Navlinks */
.nav-links a{
    color          : white;
    text-decoration: none;
    font-size      : 16px;
    font-weight    : 400;
    transition     : opacity 0.3s;
}
.nav-links a:hover{
    opacity: 0.8;
}
.get-quote-btn{
    background-color: rgba(255, 255, 255, 0.3);
    border-radius   : 4px;
    padding         : 8px 16px;
}
.mobile-menu-btn {
    display   : none;
    background: transparent;
    border    : none;
    color     : white;
    font-size : 24px;
    cursor    : pointer;
}
@media(max-width: 768px){
    .mobile-menu-btn{
        display: block;
    }
    .nav-links{
        display         : none;
        flex-direction  : column;
        position        : absolute;
        top             : 50px;
        right           : 0;
        background-color: #000;
        padding         : 20px;
        width           : 200px;
        z-index         : 10;
        box-shadow      : 0 4px 10px rgba(0, 0, 0, 0.3);
        border-radius   : 0 0 0 8px;
    }
    .nav-links a{
        width     : 100%;
        text-align: left;
    }
    .get-quote-btn{
        margin-top: 8px;
        width     : 100%;
        text-align: center;
    }
}
@media (max-width: 480px){
    .logo img{
        height: 32px;
    }
    .navbar{
        padding: 12px 4%;
    }
}

/********************************** NAVBAR ENDS HERE **************************************/

/* Container max-width */
.hero-section {
    max-width: 1200px;
    padding  : 0px 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
/* Content side - taking 45% of the space */
.hero-content{
    flex: 0 0 45%;
    max-width: 45%;
}
.hero-content h1{
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 10px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p{
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 200;
}
/* Image side - taking 55% of the space */
.hero-image {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
}
/* Main hero image */
.hero-image img[src*="heroImage.svg"]{
    width    : 100%;
    height   : auto;
    animation: float 6s ease-in-out infinite;
    position : relative;
    z-index  : 2;
}
/* Layer image overlay */
.layer-container{
    position: fixed;
    top     : 0;
    right   : 0;
    height  : 100vh;
    pointer-events: none;
    z-index : 1;
}
/* Layer image */
.hero-image img[src*="heroImageLayer.svg"]{
    position      : absolute;
    top           : -20%;
    right         : -10%;
    width         : 70vw; 
    height        : auto;
    animation     : rotateFloat 20s linear infinite;
    pointer-events: none;
}
/* Button styles */
.hero-btns {
    display: flex;
    gap    : 16px;
}
.hero-btns .btn {
    padding      : 12px 24px;
    font-weight  : 500;
    border-radius: 8px;
    transition   : transform 0.3s ease;
    white-space  : nowrap;
}
.hero-btns .btn-primary{
    background: #14F195;
    border    : none;
    color     : #000;
}
.hero-btns .btn-secondary{
    background: rgba(255, 255, 255, 0);
    border    : 1px solid white;
    color     : white;
}
@media(max-width: 768px){
    .hero-section{
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-content, .hero-image{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-btns{
        justify-content: center;
    }
    .hero-image img[src*="heroImageLayer.svg"]{
        width: 180%;
        top  : -30%;
        right: -40%;
    }
    .hero-content h1{
        font-size: clamp(25px, 3vw, 40px);
        margin-bottom: 7px;
    }
    
    .hero-content p{
        font-size: clamp(10px, 1vw, 9px);
    }
}
@media(max-width: 480px){
    .hero-image img[src*="heroImageLayer.svg"]{
        width: 200%;
        top  : -20%;
        right: -50%;
    }
}
@media(max-width: 575px){
    .heroImg{
        display: none;
    }
}
@media(max-width: 767px) and (min-width: 576px){
  .heroImg{
        display: none;
    }
}

/********************************** HERO SECTION ENDS HERE **************************************/

/* Container max-width */
.partner-section{
    max-width: 1200px;
    padding  : 0px 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
.partner-text{
    font-size     : clamp(14px, 1.8vw, 16px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom : 20px;
    color         : #618ADC;
    text-align    : center;
}
.logos{
    display      : grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap          : 40px;
    align-items  : center;
    justify-items: center;
    width        : 100%;
    padding      : 0px 50px;
}
.logos img{
    width     : 100%;
    max-width : 160px;
    height    : auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media(max-width: 1200px){
    .logos{
        gap: 32px;
    }
}

@media(max-width: 992px){
    .partner-text{
        font-size: 12px;
    }
    .logos{
        gap: 28px;
        padding: 0px 30px;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }
}

@media(max-width: 768px){
    .partner-text{
        font-size: 7px;
        margin-bottom: 20px;
    }
    .logos{
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
        gap: 20px;
        padding: 0px 30px;
    }
    .logos img{
        max-width: 140px;
    }
}

@media(max-width: 480px){
    .partner-text{
        font-size: 7px;
        margin-bottom: 15px;
    }
    .logos{
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 20px;
        padding: 0px;
    }
    .logos img{
        max-width: 120px;
    }
}

/********************************** PARTNER SECTION ENDS HERE **************************************/
.numbers-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.numbers-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    backdrop-filter: blur(10px);
}
.main-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}
.numbers-stack {
    display: flex;
    flex-direction: column;
}
.number-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}
.number.purple {
    background: linear-gradient(135deg, #19FB9B, #8C01FA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.number.cyan {
    background: linear-gradient(135deg, #0047FF, #00BCD4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.number.blue {
    background: linear-gradient(135deg, #00FFBD, #025B8C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.number-label {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
    color: #fff;
}
/* Refined responsive breakpoints with specific font sizes */
@media (max-width: 1200px) {
    .main-title {
        font-size: 42px;
    }
    .number {
        font-size: 48px;
    }
    .number-label {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .numbers-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .title-area {
        padding-left: 0;
    }
    .numbers-stack {
        padding-right: 0;
    }
    .number-item {
        align-items: center;
        text-align: center;
    }
    .main-title {
        font-size: 36px;
    }
    .number {
        font-size: 42px;
    }
    .number-label {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .numbers-section {
        padding: 60px 20px;
    }
    .main-title {
        font-size: 32px;
    }
    .number {
        font-size: 38px;
    }
    .numbers-stack {
        gap: 40px;
    }
    .number-label {
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .numbers-section {
        padding: 35px 15px;
    }
    .main-title {
        font-size: 28px;
    }
    .number {
        font-size: 32px;
    }
    .number-label {
        font-size: 10px;
    }
    .numbers-stack {
        gap: 5px;
    }
    .number-item {
        padding: 15px;
    }
}

/********************************** NUMBER SECTION ENDS HERE **************************************/

/* Solutions Section */
.solutions-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
}
@keyframes floatGradient {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

@keyframes drawLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.solutions-title{
    font-size: 42px;
    margin-bottom: 50px;
}

.solution-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.solution-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-title::before {
    content: '';
    width: 3px;
    height: 24px;
    background: linear-gradient(to bottom, #B85EFF, #00E5FF);
    border-radius: 3px;
}

.solution-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 16px;
}

.metric {
    font-size: 32px;
    color: #B85EFF;
    margin-top: 20px;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap:10px;
    }
    .solutions-title{
        font-size: 36px;
    }
    .solution-title {
        font-size: 22px;
    }
    .solution-description {
        font-size: 15px;
    }
    .metric {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 20px;
    }
    .solutions-title{
        font-size: 32px;
        margin-bottom: 40px;
    }
    .solution-title {
        font-size: 20px;
    }
    .solution-description {
        font-size: 14px;
    }
    .metric {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 40px 15px;
    }
    .solutions-title{
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    .solution-card {
        padding: 20px;
    }
    .solution-title {
        font-size: 18px;
    }
    .solution-description {
        font-size: 13px;
    }
    .metric {
        font-size: 24px;
    }
    .metric-label {
        font-size: 11px;
    }
}

/********************************** SOLUTION SECTION ENDS HERE **************************************/

.about-section {
    max-width: 1200px;
    padding: 0px 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    background-color: transparent;
    color: #fff;
}

.about-section h1 {
    padding-top: 50px;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-container {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #111;
}

.about-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 24px;
    color: #ccc;
}

.learn-more {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:after {
    content: "→";
    transition: transform 0.2s ease;
}

.learn-more:hover:after {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .about-image-container {
        order: -1;
        border-radius: 12px 12px 0 0;
    }
    
    .about-img {
        min-height: 200px;
    }
    
    .about-content {
        border-radius: 0 0 12px 12px;
    }
}

/* Special mobile treatment */
@media (max-width: 480px) {
    .about-section h1 {
        margin-bottom: 20px;
    }
    
    .about-container {
        position: relative;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    
    .about-image-container {
        position: absolute;
        height: 100%;
        width: 40%;
        right: 0;
        top: 0;
        border-radius: 0 12px 12px 0;
    }
    
    .about-img {
        opacity: 0.6;
        min-height: 100%;
    }
    .about-content {
        width: 100%;
        background-color: rgba(17, 17, 17, 0.8);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        z-index: 2;
        border-radius: 12px;
    }
}
.aboutus-content {
    text-align: left;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.aboutus-paragraph {
    margin-bottom: 1.5rem;
}
/********************************** ABOUTUS SECTION ENDS HERE **************************************/

.services-section{
    max-width: 1200px;
    padding  : 0px 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
.services-content{
    padding-top:80px;
}
.services-content h1{
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.subtitle{
    color: #999;
    margin-bottom: 3rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card{
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6b46c1, #9f7aea);
}
.category {
    color: #9f7aea;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.description {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.learn-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}
.learn-more:hover {
    color: #9f7aea;
}
.learn-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.learn-more:hover::after{
    transform: translateX(5px);
}
/* Mobile Screens */
@media (max-width: 768px) {
    .services-content {
        padding-top: 40px;
    }
}
/********************************** SERVICES SECTION ENDS HERE **************************************/
.stats-section {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.stats-content {
    padding-top: 80px;
    display: flex;
}
.stats-left {
    flex: 1;
    padding-top: 7rem;
}
.stats-left h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.stats-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
}
.stats-right {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 2rem;
    min-width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.stat-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stat-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .stats-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .stats-content {
        flex-direction: column;
        gap: 2rem;
        padding-top: 0px;
    }

    .stats-left {
        text-align: center;
    }

    .stats-left p {
        margin: 0 auto;
    }

    .stats-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 1rem;
    }

    .stats-left h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/********************************** STATS SECTION ENDS HERE **************************************/

.portfolio-section{
    max-width: 1200px;
    padding  : 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
.portfolio-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.portfolio-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
}
.portfolio-subtitle{
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.8;
}
.view-all{
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}
.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.portfolio-item{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.portfolio-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.portfolio-item:hover img{
    transform: scale(1.05);
}
@media(max-width: 768px){
    .portfolio-section{
        padding: 1rem;
    }
    .portfolio-grid{
        gap: 1rem;
    }
}
@media(max-width: 480px){
    .portfolio-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/********************************** PORTFOLIO SECTION ENDS HERE **************************************/
.review-section{
    max-width: 1200px;
    padding  : 0px 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
.review-header{
    padding-top: 80px;
}
        
.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    position: relative;
    gap: 20px;
    paadding-top:80px;
}

.testimonial-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    min-width: 300px;
    flex: 1;
    transition: transform 0.3s ease;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-weight: 600;
    margin-bottom: 3px;
}

.client-details p {
    color: #aaaaaa;
    font-size: 14px;
}

.navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
}

.nav-btn {
    background-color: #333333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}

.nav-btn:hover:not([disabled]) {
    background-color: #555555;
}

.nav-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Hide navigation on large screens */
@media (min-width: 1025px) {
    .navigation {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonial-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .testimonial-slider::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
        scroll-snap-align: start;
        min-width: 80%;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 90%;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 100%;
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
    }
}

/********************************** REVIEW SECTION ENDS HERE **************************************/
/* TEAM SECTION STYLES */
.team-section {
    max-width: 1200px;
    padding: 80px 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    color: #fff;
    overflow: hidden;
    background-color: #000;
}

.team-content {
    position: relative;
    z-index: 2;
}

.team-heading {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

/* Team Grid Image */
.team-image-container {
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-grid-image {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Styles with Background Layer */
.cta-wrapper {
    position: relative;
    text-align: center;
    padding: 60px 20px;
}

.cta-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; background-image: url('https://techsaint.co.in/techsaint/public/images/teamLayer.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    border-radius: 12px;
    overflow: hidden;
    z-index: -1;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 15px;
    }
    
    .team-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .cta-wrapper {
        padding: 40px 15px;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 40px 15px;
    }
    
    .team-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .cta-wrapper {
        padding: 30px 15px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/********************************** TEAM SECTION ENDS HERE **************************************/

.footer{
    padding: 4rem 0rem;
}
.footer-content{
    max-width: 1200px;
    padding  : 0px 20px;
    margin   : 0 auto;
    width    : 100%;
    position : relative;
}
.footer-main{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.brand-section img{
    height: 40px;
    margin-bottom: 1rem;
}
.brand-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 300px;
}
.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}
.footer-links{
    list-style: none;
    padding-left: 0px;
}
.footer-links li{
    margin-bottom: 1rem;
}
.footer-links a{
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover{
    color: white;
}
.social-links{
    display: flex;
    gap: 1rem;
}
.social-links a{
    color: white;
    text-decoration: none;
}
.copyright{
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.85rem;
}
@media(max-width: 768px){
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .brand-section{
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px){
    .footer-main{
        grid-template-columns: 1fr;
    }
}

