* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    color: #1a1a2e;
    overflow-x: hidden;
}
.section {
    margin: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header,.nav,.nav-links{display:flex}
.btn-quote,.phone{text-decoration:none;font-weight:600}
.header{justify-content:space-between;align-items:center;padding:8px 60px;margin:0 auto;position:sticky;top:0;background:rgba(240,247,255,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);box-shadow:0 2px 20px transparent;transition:.3s;z-index:1000}
.header.scrolled{background:rgba(255,255,255,.98);box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header .logo-img{width:230px;position:relative;z-index:1002}
.nav{align-items:center}
.nav-links{gap:35px;list-style:none;margin:0;padding:0}
.nav-links>li{position:relative;list-style:none}
.nav-links>li>a{text-decoration:none;color:#333;font-size:15px;font-weight:500;transition:color .3s;display:flex;align-items:center;gap:5px;padding:10px 0}
.nav-links>li>a:hover{color:#06c}
.dropdown-arrow{width:12px!important;height:12px;transition:transform .3s;flex-shrink:0}
@media (min-width:1025px){
    .dropdown-menu,.dropdown-menu li{list-style:none}
    .nav-links>li:hover>a .dropdown-arrow{transform:rotate(180deg)}
    .dropdown-menu{position:absolute;top:100%;left:-20px;background:#fff;min-width:260px;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.12);opacity:0;visibility:hidden;transform:translateY(10px);transition:.3s;padding:12px 0;z-index:1000;margin:0}
    .nav-links>li:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
    .dropdown-menu li a{display:flex;align-items:center;gap:12px;padding:12px 20px;text-decoration:none;color:#333;font-size:14px;font-weight:500;transition:.2s}
    .dropdown-menu li a:hover{background:#f0f7ff;color:#06c}
    .dropdown-menu li a .menu-icon{width:36px;height:36px;padding:7px;background:#f0f7ff;border-radius:8px;display:flex;align-items:center;justify-content:center;transition:.2s;flex-shrink:0}
    .menu-icon-img{width:18px;height:18px}
    .dropdown-menu li a:hover .menu-icon{background:#06c}
    .dropdown-menu li a:hover .menu-icon-img{filter:brightness(0) invert(1)}
    .dropdown-menu li a .menu-icon svg{width:18px;height:18px;color:#06c;transition:.2s}
    .dropdown-menu li a:hover .menu-icon svg{color:#fff}
    .dropdown-menu .menu-text{display:flex;flex-direction:column}
}
.mobile-nav-cta{display:none}
.nav-right{display:flex;align-items:center;gap:25px}
.phone{display:flex;align-items:center;gap:8px;font-size:15px;color:#1a1a2e}
.phone-icon{width:18px;height:18px}
.btn-quote{background:#06c;color:#fff;padding:14px 24px;border-radius:8px;font-size:14px;transition:.3s}
.btn-quote:hover{background:#0052a3;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,102,204,.3)}
.mobile-menu-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:10px;z-index:1002;background:0 0;border:none}
.mobile-menu-toggle span{width:25px;height:3px;background:#1a1a2e;border-radius:3px;transition:.3s;display:block}
.mobile-menu-toggle.active span:first-child{transform:rotate(45deg) translate(5px,6px)}
.mobile-menu-toggle.active span:nth-child(2){opacity:0}
.mobile-menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-6px)}
@media (max-width:1024px){
    .dropdown-menu,.dropdown-menu li{list-style:none}
    .header{padding:12px 30px}
    .nav-right{display:none}
    .mobile-menu-toggle{display:flex}
    .nav{position:fixed;top:0;left:0;width:100%;height:100vh;height:100dvh;background:#fff;z-index:1001;padding:100px 30px 30px;overflow-y:auto;transform:translateX(-100%);transition:transform .4s;flex-direction:column;align-items:stretch}
    .nav.active{transform:translateX(0)}
    .nav-links{flex-direction:column;gap:0;width:100%}
    .nav-links>li{border-bottom:1px solid #eee}
    .nav-links>li>a{justify-content:space-between;padding:18px 0;font-size:17px;font-weight:600;color:#1a1a2e;width:100%}
    .nav-links>li>a .dropdown-arrow{width:18px!important;height:18px}
    .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border-radius:0;max-height:0;overflow:hidden;transition:max-height .4s,padding .3s;background:#f8fafc;margin:0 -30px;padding:0 30px}
    .nav-links>li.expanded .dropdown-menu{max-height:800px;padding:10px 30px 15px}
    .nav-links>li.expanded>a .dropdown-arrow{transform:rotate(180deg)}
    .dropdown-menu li a{display:flex;align-items:center;gap:12px;padding:14px 0;text-decoration:none;color:#555;font-size:15px;font-weight:500;border-bottom:1px solid #e5e5e5;transition:color .2s}
    .dropdown-menu li:last-child a{border-bottom:none}
    .dropdown-menu li a:hover{color:#06c;background:0 0}
    .dropdown-menu li a .menu-icon{width:40px;height:40px;background:#fff;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
    .dropdown-menu li a .menu-icon svg{width:20px;height:20px;color:#06c}
    .dropdown-menu .menu-text{font-size:15px}
    .mobile-nav-cta .btn-quote,.mobile-nav-cta .phone{font-size:16px;text-decoration:none;font-weight:600}
    .mobile-nav-cta{display:flex;flex-direction:column;gap:15px;margin-top:30px;padding-top:30px;border-top:1px solid #eee}
    .mobile-nav-cta .phone{display:flex;justify-content:center;align-items:center;gap:10px;padding:16px;background:#f0f7ff;border-radius:10px;color:#1a1a2e}
    .mobile-nav-cta .phone .phone-icon{width:20px;height:20px}
    .mobile-nav-cta .btn-quote{display:block;text-align:center;padding:18px;background:#06c;color:#fff;border-radius:8px}
    .mobile-nav-cta .btn-quote:hover{background:#0052a3}
    .nav{display:flex;flex-direction:column}
    .nav-links{flex:0 0 auto}
}
@media (max-width:768px){
    .header{padding:12px 24px}
    .header img{width:180px}
    .menu-icon-img{width:22px!important;height:22px}
    .nav{padding:90px 24px 24px}
    .dropdown-menu{margin:0 -24px;padding:0 24px}
    .nav-links>li.expanded .dropdown-menu{padding:10px 24px 15px}
    .mobile-nav-cta .phone{font-size:15px;padding:14px}
    .mobile-nav-cta{margin-top:25px;padding-top:25px}
    .mobile-nav-cta .btn-quote{padding:16px;font-size:15px}
}
@media (max-width:480px){
    .header{padding:10px 16px}
    .header img{width:250px}
    .nav{padding:80px 16px 16px}
    .nav-links>li>a{font-size:16px;padding:16px 0}
    .dropdown-menu{margin:0 -16px;padding:0 16px}
    .nav-links>li.expanded .dropdown-menu{padding:8px 16px 12px}
    .dropdown-menu li a{padding:12px 0;font-size:14px}
    .dropdown-menu li a .menu-icon{width:36px;height:36px}
    .mobile-nav-cta{margin-top:20px;padding-top:20px;gap:12px}
    .mobile-nav-cta .phone{font-size:14px;padding:12px}
    .mobile-nav-cta .btn-quote{padding:14px;font-size:14px}
}
body.menu-open{overflow:hidden}
/* Header End */

.section-header{text-align:center;}
.section-header h2{font-size:40px;font-weight:900;letter-spacing:-.5px;margin-bottom:16px;color:#4a5568}
.section-header p{font-size:16px;color:#64748b;line-height:1.7}
@media (max-width:768px){
    .section-header{margin-bottom: 15px;}
    .section-header h2{font-size:28px}
    .section-header p{font-size:16px}
}

/* Hero section start */
.hero{display:flex;justify-content:space-between;align-items:center;padding:40px 60px 60px;margin:0 auto;gap:60px;background:linear-gradient(#f0f7ff 0,#e8f4ff 50%,#f5f9ff 100%)}
.hero-content{flex:1;max-width:600px;animation:.8s ease-out fadeInUp}
.hero-title{font-size:52px;font-weight:800;line-height:1.1;margin-bottom:10px;color:#1e293b}
.hero-description{font-size:17px;color:#748298;line-height:1.5;margin-bottom:18px}
.btn-primary,.feature-item{align-items:center;font-size:15px}
.hero-description strong{color:#3b495c}
.hero-buttons{display:flex;gap:16px;margin-top:45px}
.hero-buttons .btn-primary{display:inline-flex;gap:10px;background:#045eb7;color:#fff;padding:18px 28px;border-radius:50px;text-decoration:none;font-weight:600;transition:.3s}
.hero-buttons .btn-primary:hover{background:#045eb7;transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,102,204,.35)}
.hero-buttons .btn-secondary {display: inline-flex;align-items: center;gap: 10px;background: #e2e8f0;color: #1e74ac;padding: 18px 28px;border-radius: 50px;text-decoration: none;font-weight: 600;font-size: 15px;border: 1px solid #cbd5e1;transition: all 0.3s;}
.hero-buttons .btn-secondary:hover {border-color: #0066cc;color: #0066cc;transform: translateY(-2px);}
.features-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px 40px}
.feature-item{display:flex;gap:12px;color:#5e6878;font-weight:500;background:#fff;padding:15px;border-radius:7px}
.feature-check{width:24px;height:24px;background:#dcfce7;border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feature-check i,.feature-check svg{width:14px;height:14px;font-size:14px;color:#22c55e}
.hero-visual{flex:1;max-width:620px;position:relative;animation:.8s ease-out .2s both fadeInUp}
.hero-visual img{border-radius:10px}
@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@media (max-width:1200px){
    .hero{padding:40px 40px 60px}
    .hero-title{font-size:44px}
}
@media (max-width:1024px){
    .hero{flex-direction:column;text-align:center}
    .hero-content{max-width:100%;order:2}
    .hero-buttons{justify-content:center}
    .features-grid{grid-template-columns:repeat(2,1fr);justify-content:center;max-width:660px;margin:0 auto}
    .hero-visual{max-width:100%;width:100%;order:1}
}
@media (max-width:768px){
    .hero-visual img{border-radius:10px;max-width:100%;height:auto}
    .hero{padding:30px 24px 50px;gap:40px}
    .hero-title{font-size:36px}
    .hero-description{font-size:15px}
    .hero-buttons{flex-direction:column;align-items:center}
    .btn-primary{width:100%;max-width:300px;justify-content:center}
    .features-grid{text-align:left}
    .hero-buttons .btn-secondary{width: 75%;justify-content:center}
}
@media (max-width:600px){.features-grid{grid-template-columns:1fr;max-width:280px}}
@media (max-width:480px){
    .hero{padding:20px 16px}
    .hero-title{font-size:28px}
    .btn-primary,.feature-item{font-size:14px}
    .hero-description{font-size:14px;margin-bottom:25px}
    .hero-buttons{margin-bottom:30px}
    .btn-primary{padding:16px 20px}
}
/* Hero section end */


/* divider section start */
.section-light {padding: 10px 40px;}
.split-section {display: grid;grid-template-columns: 1fr 1fr;gap: 80px;align-items: center;}
.split-section.reverse .split-image {order: -1;}
.split-image {position: relative;}
.split-image-wrapper {position: relative;border-radius: 20px;overflow: hidden;box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);}
.split-image-wrapper img {width: 100%;height: auto;display: block;}
.split-image-decorated {position: relative;padding: 20px;}
.split-image-decorated .split-image-wrapper {position: relative;z-index: 1;margin-top: 20px;margin-left: 20px;}
.split-content {max-width: 520px;}
.split-content h2 {font-size: 40px;font-weight: 800;color: #4a5568;margin-bottom: 20px;line-height: 1.2;letter-spacing: -0.5px;}
.split-content p {font-size: 16px;color: #64748b;line-height: 1.8;margin-bottom: 16px;}
.split-content p:last-of-type {margin-bottom: 0;}
.btn-outline {display: inline-flex;align-items: center;gap: 10px;padding: 14px 28px;background: transparent;color: #1e74ac;font-size: 15px;font-weight: 600;border: 2px solid #1e74ac;border-radius: 10px;text-decoration: none;margin-top: 28px;transition: all 0.3s ease;}
.btn-outline:hover {background: #1e74ac;color: #fff;transform: translateY(-2px);box-shadow: 0 8px 20px rgba(30, 116, 172, 0.25);}
.btn-outline svg {width: 18px;height: 18px;transition: transform 0.3s ease;}
.btn-outline:hover svg {transform: translateX(4px);}
@media (max-width: 1024px) {
    .split-section {grid-template-columns: 1fr;gap: 20px;}
    .split-section.reverse .split-image {order: 0;}
    .split-content {max-width: 100%;text-align: center;}
}
@media (max-width: 768px) {
    .split-image {order: 1;}
    .split-content {order: 2;}
    .split-content h2 {font-size: 28px;}
    .split-content p {font-size: 15px;}
    .split-image-decorated {padding: 16px;}
    .split-image-decorated::before {right: 20px;bottom: 20px;}
    .split-stats {flex-direction: column;gap: 20px;align-items: center;}
    .split-stat {text-align: center;}
    .app-badges {justify-content: center !important;gap: 30px !important;}
    .section-light {padding: 10px 0 !important;margin: 25px 0;}
    .app-badges a {padding: 28px 0px !important;}
    .split-image-decorated .split-image-wrapper{margin-top: 0;margin-left: 0;}
}
.app-badges {display: flex;justify-content: flex-start;gap: 0;flex-wrap: wrap;}
.app-badges a {display: flex;align-items: center;justify-content: center;padding: 28px 28px 20px 0px;border-radius: 10px;backdrop-filter: blur(4px);transition: transform .2s ease, background .2s ease;}
.app-badges img {height: 58px;width: auto;display: block;filter: brightness(.95) saturate(.85);}
/* divider section end */


/* carousel images slider section start */
.logo-slider {width: 100%;background: #ffffff;padding: 20px 0;}
.logo-track-wrapper {overflow: hidden;width: 100%;}
.logo-track {display: flex;align-items: center;width: max-content;animation: logo-scroll 20s linear infinite;will-change: transform;}
@keyframes logo-scroll {0%   { transform: translateX(0); }100% { transform: translateX(-33.3333%); }}
.logo-slide {flex-shrink: 0;width: 200px;display: flex;align-items: center;justify-content: center;padding: 0 25px;box-sizing: border-box;}
.logo-slide img {max-width: 150px;max-height: 70px;width: auto;height: auto;object-fit: contain;display: block;}
.logo-track {display: flex;gap: 0;width: max-content;animation: scroll 25s linear infinite;will-change: transform;}
.logo-slide {flex-shrink: 0;width: 200px;display: flex;align-items: center;justify-content: center;padding: 0 20px;box-sizing: border-box;}
.logo-slide img {max-width: 160px;max-height: 80px;object-fit: contain;filter: grayscale(0%);}
@keyframes scroll {0% {transform: translateX(0);}100% {transform: translateX(-50%);}}
/* carousel images slider section end */


/* why choose us section start */
.why-choose{padding:30px 0}
.why-choose .container{max-width:1440px;margin:0 auto}
.benefits-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}
.benefit-card{background:#fff;border-radius:20px;padding:36px 28px;position:relative;border:1px solid #e2e8f0;transition:.4s cubic-bezier(.16, 1, .3, 1);overflow:hidden}
.benefit-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#3b82f6,#06b6d4);transform:scaleX(0);transform-origin:left;transition:transform .4s}
.benefit-card:hover{transform:translateY(-8px);box-shadow:0 25px 50px -12px rgba(0,0,0,.1);border-color:transparent}
.benefit-card:hover::before{transform:scaleX(1)}
.benefit-card:nth-child(2),.benefit-card:nth-child(4){margin-top:40px}
.benefit-number{font-size:64px;font-weight:800;background:linear-gradient(135deg,#e2e8f0 0,#f1f5f9 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1;margin-bottom:20px}
.benefit-card:hover .benefit-number{background:padding-box text #3b82f6;--webkit-background-clip:text;-webkit-text-fill-color:transparent}
.benefit-icon{display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.benefit-card:first-child .benefit-icon,.benefit-card:nth-child(2) .benefit-icon,.benefit-card:nth-child(3) .benefit-icon,.benefit-card:nth-child(4) .benefit-icon,.benefit-card:nth-child(5) .benefit-icon{background:#dbeafe;color:#3b82f6}
.benefit-icon i,.benefit-icon svg{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;font-size:26px;color:#1e74ac;transition:color .3s}
.benefit-icon{width:52px;height:52px;background:rgba(30,116,172,.08);border-radius:14px;display:flex;align-items:center;justify-content:center;transition:.3s}.benefit-card:hover .benefit-icon{background:#1e74ac}
.benefit-icon i{width:auto;height:auto}
.benefit-card:hover .benefit-icon i,.benefit-card:hover .benefit-icon svg{color:#fff}
.benefit-card h3{font-size:18px;font-weight:800;color:#4a5568;margin-bottom:12px;line-height:1.4}
.benefit-card p{font-size:15px;color:#64748b;line-height:1.7}
@media (max-width:1024px){.benefits-grid{grid-template-columns:repeat(2,1fr);gap:20px}}
@media (max-width:768px){
    .section-header h2{font-size:28px}
    .section-header p{font-size:16px}
    .benefits-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
    .benefit-card{padding:28px 24px}
    .benefit-card:nth-child(2),.benefit-card:nth-child(4){margin-top:0}
    .why-choose{margin: 10px 0;}
}
@media (max-width:480px){
    .benefit-icon{width:48px;height:48px}
    .benefit-icon svg{width:24px;height:24px}
    .benefit-card h3{font-size:17px}
    .benefit-card p{font-size:14px}
}
/* why choose us section end */


/* TESTIMONIAL CAROUSEL STYLES */
.carousel-btn,.carousel-dot{cursor:pointer;transition:.3s}
.testimonials-section{padding:50px 40px 100px;background:#f8fafc}
.testimonials-section .container{max-width:1200px;margin:0 auto}
.testimonials-section .section-header{text-align:center;margin-bottom:50px}
.testimonials-section .section-header h2{font-size:clamp(28px, 4vw, 40px);font-weight:800;color:#4a5568;margin-bottom:16px;line-height:1.2}
.testimonials-section .section-header p{font-size:16px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}
.testimonial-carousel-wrapper{position:relative;padding:0 60px}
.testimonial-carousel{overflow:hidden}
.testimonial-track{display:flex;gap:24px;transition:transform .5s cubic-bezier(.4, 0, .2, 1)}
.testimonial-card{flex:0 0 calc(33.333% - 16px);background:#fff;border-radius:20px;padding:32px 28px;position:relative;box-shadow:0 4px 20px rgba(0,0,0,.04);border:1px solid #e2e8f0;transition:.3s;display:flex;flex-direction:column}
.testimonial-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.1);border-color:#cbd5e1}
.testimonial-card::before{content:'"';position:absolute;top:20px;right:28px;font-size:64px;font-weight:900;color:#1e74ac;opacity:.08;line-height:1;font-family:Georgia,serif}
.stars{display:flex;gap:4px;margin-bottom:20px}
.stars i,.stars svg{width:18px;height:18px;font-size:18px;fill:#fbbf24;color:#fbbf24;display:inline-flex;align-items:center;justify-content:center}
.carousel-btn i,.stars i{width:auto;height:auto}
.testimonial-card .text{font-size:15px;color:#475569;line-height:1.75;font-style:italic;flex:1;margin-bottom:24px;position:relative;z-index:1}
.author{display:flex;align-items:center;gap:14px;padding-top:20px;border-top:1px solid #f1f5f9}
.author-avatar,.carousel-btn{width:48px;height:48px;align-items:center;display:flex}
.author-avatar{background:linear-gradient(135deg,#1e74ac 0,#3b9fd1 100%);border-radius:50%;justify-content:center;color:#fff;font-size:16px;font-weight:700;flex-shrink:0}
.author-info{flex:1}
.author .name{font-size:15px;font-weight:700;color:#1a1a2e;margin-bottom:2px}
.author .role{font-size:13px;color:#64748b}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid #e2e8f0;border-radius:50%;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.08);z-index:10}
.carousel-btn:hover{background:#1e74ac;border-color:#1e74ac}
.carousel-btn:hover i,.carousel-btn:hover svg{color:#fff}
.carousel-btn i,.carousel-btn svg{width:24px;height:24px;font-size:24px;color:#475569;transition:color .3s;display:inline-flex;align-items:center;justify-content:center}
.carousel-prev{left:0}
.carousel-next{right:0}
.carousel-btn:disabled{opacity:.4;cursor:not-allowed}
.carousel-btn:disabled:hover{background:#fff;border-color:#e2e8f0}
.carousel-btn:disabled:hover i,.carousel-btn:disabled:hover svg{color:#475569}
.carousel-dots{display:flex;justify-content:center;gap:10px;margin-top:40px}
.carousel-dot{width:10px;height:10px;border-radius:50%;background:#cbd5e1;border:none;padding:0}
.carousel-dot:hover{background:#94a3b8}
.carousel-dot.active{width:32px;border-radius:5px;background:#1e74ac}
@media (max-width:1024px){
    .testimonial-card{flex:0 0 calc(50% - 12px)}
    .testimonial-carousel-wrapper{padding:0 50px}
}
@media (max-width:768px){
    .testimonials-section{padding:60px 20px}
    .testimonial-carousel-wrapper{padding:0}
    .testimonial-card{flex:0 0 100%}
    .carousel-btn{display:none}
    .testimonial-track{gap:16px}
}
@media (max-width:480px){
    .testimonial-card{padding:24px 20px}
    .testimonial-card .text{font-size:14px}
}
/* TESTIMONIAL CAROUSEL STYLES end */

/* awards section start */
.section-awards {padding-top: 3rem !important;padding-bottom: 3rem !important;}
.row.g-4 {display: grid;grid-template-columns: 1fr 1fr 1fr;gap: 23px;}
.card-custom {border-radius: 12px;border: 1px solid #e0f5f7;padding: 20px;box-shadow: 0 0 10px rgba(0, 0, 0, .03);display: flex;flex-direction: column;align-items: center;}
.text-muted {color: #6c757d !important;font-size: 14px;text-align: center;}
.section-awards img {margin-bottom: .5rem !important;}
@media (max-width: 768px) {.row.g-4 {grid-template-columns: 1fr;}}
/* awards section end */


/* last section start */
.contact-grid,.form-grid{grid-template-columns:1fr 1fr}
.contact-grid{display:grid;gap:0;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,.08);border:1px solid #e5e7eb}
.contact-section{padding-top:5rem;padding-bottom:5rem}
.contact-img{position:relative;min-height:600px}
.contact-img img,.contact-img-placeholder{position:absolute;top:0;left:0;width:100%;height:100%}
.contact-img img{object-fit:cover}
.contact-img-placeholder{background:linear-gradient(135deg,#0c2d48 0,#1e74ac 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;padding:40px;text-align:center}
.contact-img-placeholder i,.contact-img-placeholder svg{width:120px;height:120px;font-size:120px;margin-bottom:24px;opacity:.9;display:inline-flex;align-items:center;justify-content:center}
.contact-img-placeholder i,.error-message i,.form-points i,.form-success-icon i,.input-icon.i,.input-wrapper i.input-icon{width:auto;height:auto}
.contact-img-placeholder h3{font-size:24px;font-weight:700;margin-bottom:12px}
.contact-img-placeholder p{font-size:16px;opacity:.8;line-height:1.6}
.contact-form-wrap{padding:48px}
.contact-form-wrap h2{font-size:32px;font-weight:900;color:#4a5568;margin-bottom:24px;letter-spacing:-.5px}
.form-points{list-style:none;margin-bottom:32px}
.form-points li{display:flex;align-items:flex-start;gap:12px;font-size:15px;color:#475569;margin-bottom:12px;line-height:1.5}
.form-points li:last-child{margin-bottom:0}
.form-points i,.form-points svg{width:20px;height:20px;font-size:20px;color:#10b981;flex-shrink:0;margin-top:2px;display:inline-flex;align-items:center;justify-content:center}
.form-grid{display:grid;gap:20px;margin-bottom:24px}
.form-field{display:flex;flex-direction:column}
.form-field label{font-size:14px;font-weight:600;color:#374151;margin-bottom:8px}
.form-field label .required{color:#ef4444;margin-left:2px}
.form-field input,.form-field select{width:100%;padding:14px 16px;font-size:15px;font-family:inherit;color:#1a1a2e;background:#f8fafc;border:2px solid #e5e7eb;border-radius:12px;outline:0;transition:.3s}
.form-field select,.input-wrapper input,.input-wrapper select{padding-right:44px}
.form-field input::placeholder{color:#94a3b8}
.form-field input:focus,.form-field select:focus{border-color:#1e74ac;background:#fff;box-shadow:0 0 0 4px rgba(30,116,172,.1)}
.form-field select,.form-field select:focus{background-repeat:no-repeat;background-position:right 14px center;background-size:20px 20px}
.form-field select{cursor:pointer;appearance:none;background-color:#f8fafc;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")}
.form-field select:focus{background-color:#fff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231e74ac' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")}
.form-field.error input,.form-field.error select{border-color:#ef4444;background:#fef2f2}
.form-field.error input:focus,.form-field.error select:focus{border-color:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.1)}
.form-field.error select{border-color:#ef4444;background-color:#fef2f2;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:20px 20px}
.error-message{display:flex;align-items:center;gap:6px;margin-top:8px;font-size:13px;color:#ef4444;opacity:0;transform:translateY(-8px);transition:.3s}
.error-message i,.error-message svg{width:14px;height:14px;font-size:14px;flex-shrink:0;display:inline-flex;align-items:center;justify-content:center}
.form-field.error .error-message{opacity:1;transform:translateY(0)}
.form-field.success input,.form-field.success select{border-color:#10b981;background:#f0fdf4}
.form-field.success input:focus,.form-field.success select:focus{border-color:#10b981;box-shadow:0 0 0 4px rgba(16,185,129,.1)}
.input-wrapper{position:relative}
.input-icon{position:absolute;right:14px;top:50%;transform:translateY(-50%);width:20px;height:20px;font-size:20px;opacity:0;transition:.3s;display:inline-flex;align-items:center;justify-content:center}
.input-icon.error-icon{color:#ef4444}
.input-icon.success-icon{color:#10b981}
.form-field.error .input-icon.error-icon,.form-field.success .input-icon.success-icon{opacity:1}
.form-submit{width:100%;padding:16px 32px;font-size:16px;font-weight:700;font-family:inherit;color:#fff;background:linear-gradient(135deg,#1e74ac 0,#2589c7 100%);border:none;border-radius:12px;cursor:pointer;transition:.3s;position:relative;overflow:hidden}
.form-submit:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(30,116,172,.35)}
.form-submit:active{transform:translateY(0)}
.form-submit:disabled{opacity:.7;cursor:not-allowed;transform:none}
.form-submit .btn-text{transition:opacity .3s}
.form-submit.loading .btn-text{opacity:0}
.form-submit .btn-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:24px;height:24px;border:3px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;opacity:0;animation:none}
.form-submit.loading .btn-loader{opacity:1;animation:.8s linear infinite spin}
@keyframes spin{to{transform:translate(-50%,-50%) rotate(360deg)}}
.form-consent{margin-top:20px;font-size:12px;color:#94a3b8;line-height:1.6;text-align:left}
.form-success{display:none;text-align:center;padding:40px 20px}
.form-success.show{display:block}
.form-success-icon{width:80px;height:80px;background:linear-gradient(135deg,#10b981 0,#34d399 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px;animation:.5s scaleIn}
.form-success-icon i,.form-success-icon svg{width:40px;height:40px;font-size:40px;color:#fff;display:inline-flex;align-items:center;justify-content:center}
.form-success h3{font-size:24px;font-weight:800;color:#1a1a2e;margin-bottom:12px}
.form-success p{font-size:16px;color:#64748b;line-height:1.6}
@keyframes scaleIn{0%{transform:scale(0)}50%{transform:scale(1.1)}100%{transform:scale(1)}}
@keyframes shake{0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-8px)}40%,80%{transform:translateX(8px)}}
.form-field.shake{animation:.5s shake}
@media (max-width:1024px){
    .contact-grid{grid-template-columns:1fr}
    .contact-img{min-height:300px}
    .contact-form-wrap{padding:40px 32px}
}
@media (max-width:768px){
    .contact-section{padding:60px 0}
    .contact-form-wrap h2{font-size:26px}
    .form-grid{grid-template-columns:1fr;gap:16px}
    .contact-img{min-height:250px}
}
@media (max-width:480px){
    .contact-form-wrap{padding:32px 20px}
    .contact-form-wrap h2{font-size:22px}
    .form-points li{font-size:14px}
}
/* last section end */




/* Footer section start */
.footer-social a:hover,.scroll-top:hover{transform:translateY(-4px)}
.footer{background:#1e293b;color:#fff;padding:80px 60px 0;position:relative;overflow:hidden}
.footer-contact-icon-img{width:34px;height:34px;padding:6px}
.footer-social-icon-img{width:21px;height:21px}
.footer-social a:hover .footer-social-icon-img{filter:brightness(0) invert(1)}
.footer::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#06c,#00a8e8,#06c)}
.footer-container{max-width:1440px;margin:0 auto}
.footer-main{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:60px;padding-bottom:60px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand h3,.footer-social{gap:12px;display:flex}
.footer-brand h3{font-size:24px;font-weight:800;margin-bottom:20px;align-items:center}
.footer-brand h3 span,.footer-contact-text a:hover{color:#00a8e8}
.footer-brand-icon{width:40px;height:40px;background:linear-gradient(135deg,#06c,#00a8e8);border-radius:10px;display:flex;align-items:center;justify-content:center}
.footer-brand-icon svg{width:22px;height:22px;color:#fff}
.footer-brand p{color:#94a3b8;line-height:1.8;margin-bottom:28px;font-size:15px}
.footer-logo{width:70%}
.footer-social a{width:44px;height:44px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:12px;display:flex;align-items:center;justify-content:center;transition:.3s}
.footer-social a:hover{background:#06c;border-color:#06c}
.footer-social a svg{width:20px;height:20px;color:#94a3b8;transition:color .3s}
.footer-social a:hover svg{color:#fff}
.footer-column p{font-size:18px;font-weight:700;margin-bottom:28px;position:relative;padding-bottom:12px}
.footer-column p::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:3px;background:linear-gradient(90deg,#06c,#00a8e8);border-radius:2px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:14px}
.footer-links li a{color:#94a3b8;text-decoration:none;font-size:15px;display:flex;align-items:center;gap:8px;transition:.3s}
.footer-links li a::before{content:'';width:6px;height:6px;background:#06c;border-radius:50%;opacity:0;transition:.3s}
.footer-links li a:hover{color:#fff;transform:translateX(8px)}
.footer-links li a:hover::before{opacity:1}
.footer-contact-item{display:flex;align-items:flex-start;gap:16px;margin-bottom:24px}
.footer-contact-icon{width:48px;height:48px;background:rgba(0,102,204,.15);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.footer-contact-icon svg{width:22px;height:22px;color:#00a8e8}
.footer-contact-text{display:flex;flex-direction:column;gap:4px}
.footer-links-wrapper{display:contents}
.footer-contact-text span{font-size:12px;color:#64748b;text-transform:uppercase;letter-spacing:1px}
.footer-contact-text a,.footer-contact-text p{color:#e2e8f0;text-decoration:none;font-size:15px;font-weight:500;margin:0;transition:color .3s}
.footer-contact-text p:after{content:none}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:30px 0}
.footer-copyright{color:#64748b;font-size:13px}
.footer-copyright strong{color:#00a8e8;font-weight:600}
.scroll-top{width:48px;height:48px;background:#1e74ac;border:none;border-radius:12px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.3s}
.scroll-top svg{width:24px;height:24px;color:#fff}
@media (max-width:1024px){
    .footer{padding:60px 40px 0}
    .footer-main{grid-template-columns:repeat(2,1fr);gap:40px}
}
@media (max-width:768px){
    .footer{padding:50px 24px 0}
    .footer-main{grid-template-columns:1fr;gap:40px}
    .footer-brand,.footer-contact{text-align:center}
    .footer-brand h3,.footer-links li a,.footer-social{justify-content:center}
    .footer-column p::after,.footer-contact h4::after{left:50%;transform:translateX(-50%)}
    .footer-links-wrapper{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;text-align:center}
    .footer-links li a::before{display:none}
    .footer-contact-items{flex-direction:column;gap:16px;margin:0;display:grid;text-align:left;align-items:center;justify-content:center}
    .footer-contact-item{flex-direction:row;align-items:center;justify-content:center;text-align:left;margin-bottom:0}
    .footer-contact-icon{width:44px;height:44px}
    .footer-bottom{flex-direction:column;gap:20px;text-align:center}
}
@media (max-width:480px){
    .footer{padding:40px 16px 0}
    .footer-brand h3{font-size:20px}
    .footer-links-wrapper{grid-template-columns:repeat(2,1fr);gap:20px}
    .footer-column p{font-size:16px;margin-bottom:20px}
    .footer-links{gap:10px}
    .footer-contact-text a,.footer-contact-text p,.footer-links li a{font-size:14px}
    .footer-contact-item{justify-content:flex-start}
    .footer-contact-icon{width:40px;height:40px}
    .footer-contact-icon svg{width:18px;height:18px}
    .footer-contact-text p{margin-bottom:0}
}
/* footer section end */