/*==========================
CONTACT HERO
==========================*/

.contact-hero{

padding:20px 0;

background:linear-gradient(135deg,#0B5ED7,#3B1EF5);

color:#fff;

overflow:visible;

}

.hero-tag{

display:inline-block;

padding:8px 22px;

background:rgba(255,255,255,.18);

border-radius:30px;

font-weight:500;

margin-bottom:25px;

}

.contact-hero h1{

font-size:60px;

font-weight:500;

line-height:1.2;

margin-bottom:25px;

}

.contact-hero h1 span{

color:#FFD54F;

}

.contact-hero p{

font-size:18px;

line-height:32px;

margin-bottom:35px;

}

.contact-hero .btn{

padding:15px 40px;

border-radius:50px;

font-weight:500;

}

.hero-image{

max-width:90%;

animation:float 4s infinite ease-in-out;

}

@keyframes float{

50%{

transform:translateY(-15px);

}

}

/*==========================
CONTACT INFO
==========================*/

.contact-info{

padding:20px 0;

background:#f8f9fd;

}

.info-card{

background:#fff;

padding:45px 35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.info-card:hover{

transform:translateY(-10px);

}

.icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:linear-gradient(135deg,#0B5ED7,#2A18F6);

display:flex;

justify-content:center;

align-items:center;

}

.icon i{

font-size:34px;

color:#fff;

}

.info-card h4{

font-size:26px;

font-weight:500;

margin-bottom:15px;

}

.info-card p{

font-size:18px;

line-height:32px;

color:#666;

}

/*==========================
MAP + FORM
==========================*/

.contact-main{

padding:20px 0;

background:#ffffff;

}

/* Google Map */

.map-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

height:100%;

}

.map-card iframe{

display:block;

border:none;

}

/* Contact Form */

.contact-form{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.form-header{

background:linear-gradient(135deg,#0B5ED7,#2A18F6);

padding:25px;

color:#fff;

}

.form-header h3{

margin:0;

font-size:28px;

font-weight:500;

}

.form-header i{

margin-right:10px;

}

.contact-form form{

padding:35px;

}

.contact-form .form-control{

height:58px;

border-radius:12px;

border:1px solid #dcdcdc;

padding-left:18px;

font-size:16px;

box-shadow:none;

}

.contact-form textarea.form-control{

height:170px;

padding-top:15px;

resize:none;

}

.contact-form .form-control:focus{

border-color:#0B5ED7;

box-shadow:0 0 0 0.2rem rgba(11,94,215,.15);

}

.submit-btn{

width:100%;

height:58px;

border:none;

border-radius:50px;

background:linear-gradient(135deg,#0B5ED7,#2A18F6);

color:#fff;

font-size:18px;

font-weight:500;

transition:.35s;

}

.submit-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(0,0,0,.20);

color:#fff;

}

/* Responsive */

@media(max-width:991px){

.map-card{

margin-bottom:40px;

}

}

/*==========================
SOCIAL SECTION
==========================*/

.social-section{

background:#0B5ED7;

padding:25px 0;

color:#fff;

}

.social-section h4{

margin:0;

font-weight:500;

}

.social-section a{

width:50px;

height:50px;

background:#fff;

display:inline-flex;

justify-content:center;

align-items:center;

border-radius:50%;

margin-left:12px;

color:#0B5ED7;

font-size:22px;

transition:.4s;

text-decoration:none;

}

.social-section a:hover{

background:#FFD54F;

color:#111;

transform:translateY(-5px);

}

/*==========================
FOOTER
==========================*/

.footer{

padding:80px 0 30px;

background:#081B4B;

color:#fff;

}

.footer-logo{

width:260px;

margin-bottom:25px;

}

.footer p{

line-height:30px;

color:#ddd;

}

.footer h4{

margin-bottom:25px;

font-weight:500;

}

.footer ul{

padding:0;

list-style:none;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

padding-left:10px;

color:#FFD54F;

}

.footer i{

margin-right:10px;

color:#FFD54F;

}

.footer hr{

margin:40px 0 25px;

border-color:rgba(255,255,255,.15);

}

.copyright{

font-size:16px;

color:#ccc;

}





*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
}

/*=================*/

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*=================*/

.topbar{

background:#44348D;
color:#fff;
height:54px;

}

.topbar .container{

display:flex;
justify-content:space-between;
align-items:center;
height:54px;

}

.top-left,
.top-right{

display:flex;
align-items:center;
gap:30px;

}

.top-left a,
.top-right a{

color:#fff;
text-decoration:none;
font-size:17px;
transition:.3s;

}

.top-left i{

margin-right:8px;
font-size:20px;

}

.top-right i{

font-size:28px;

}

.top-right a:hover{

color:#ff4081;

}




header{

background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;

}

/*=================*/

.logo img{

width:320px;

}

/*=================*/

nav ul{

display:flex;
list-style:none;
align-items:center;
gap:5px;

}

nav ul li a{

text-decoration:none;
color:#44348D;
font-size:18px;
font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:#ff0f6f;

}

.active{

color:#ff0f6f;

}

.dropdown i{

font-size:13px;
margin-left:5px;

}
header {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 40%, #eef2ff 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}



.logo img{
    width:100%;
    max-width:320px;
    height:auto;
}

.navbar{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img:hover {
    transform: scale(1.03);
}
header{
    position:relative;
    overflow:visible;
}

header::before{
    content:'';
    position:absolute;
    inset:0;
    background: #ffffff;
    z-index:0;
}

.navbar{
    position:relative;
    z-index:1;
}
nav ul li a{
    color:#43348D;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    padding:12px 18px;
    border-radius:30px;
    transition:.35s;
}

nav ul li a:hover{
    background:#43348D;
    color:#fff;
}

nav ul li a.active{
    background:#ff0f6f;
    color:#fff;
}
.topbar{
    background:linear-gradient(90deg,#43348D,#5b47c7);
    height:55px;
    display:flex;
    align-items:center;
}

.innovation{
    padding:90px 0;
    background:#fff;
}

.innovation-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.innovation-content{
    width:50%;
}

.innovation-image{
    width:50%;
}

.innovation-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.innovation-content span{
    color:#6c4ef6;
    font-size:15px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
}

.innovation-content h2{
    font-size:50px;
    margin:20px 0;
    line-height:1.2;
    color:#222;
}

.innovation-content h2 span{
    color:#5B3CC4;
}

.innovation-content p{
    font-size:17px;
    color:#666;
    line-height:32px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#5B3CC4;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#ff1478;
}



/* ===========================
   DROPDOWN MENU
=========================== */

.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:270px;
    background:#fff;
    border-radius:10px;
    padding:8px 0;
    list-style:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:99999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#44348D;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
}

.dropdown-menu li a:hover{
    background:#44348D;
    color:#fff;
}





/*=========================
WHATSAPP FLOAT BUTTON
=========================*/

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:99999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
    background:#20ba5a;
}

.whatsapp-float i{
    margin:0;
}


/*==================================================
  LARGE DESKTOP (1400px and below)
==================================================*/
@media (max-width:1400px){

.container,
.hero-container{
    width:90%;
}

.hero-content h1{
    font-size:52px;
}

.hero-image img{
    max-width:500px;
}

}


/*==================================================
  LAPTOP (1200px and below)
==================================================*/
@media (max-width:1200px){

.container,
.hero-container{
    width:92%;
}

.hero-content h1{
    font-size:46px;
}

.hero-image img{
    max-width:450px;
}

.about-grid,
.services-grid,
.product-grid,
.partner-grid,
.projects-grid,
.presence-grid,
.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

}


/*==================================================
  TABLET (992px and below)
==================================================*/
@media (max-width:992px){

.navbar{
    flex-wrap:wrap;
}

.logo img{
    width:220px;
}

nav ul{
    gap:20px;
}

.hero-container,
.innovation-row,
.about-row{
    flex-direction:column;
    text-align:center;
}

.hero-content,
.hero-image,
.innovation-content,
.innovation-image{
    width:100%;
}

.hero-content h1{
    font-size:40px;
}

.section-title h2{
    font-size:34px;
}

.hero-image img{
    max-width:400px;
}

.about-grid,
.services-grid,
.values-grid,
.product-grid,
.partner-grid,
.projects-grid,
.presence-grid,
.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero-buttons{
    justify-content:center;
}

.org-row{
    flex-wrap:wrap;
    justify-content:center;
}

.org-box{
    width:280px;
}

}


/*==================================================
  MOBILE (768px and below)
==================================================*/
@media (max-width:768px){

.container,
.hero-container{
    width:95%;
}

.navbar{
    flex-direction:column;
    padding:15px 0;
}

.logo img{
    width:180px;
}

nav ul{

    display:flex;
    flex-direction:column;
    width:100%;
    gap:10px;
    align-items:center;

}

nav ul li{

    width:100%;

}

nav ul li a{

    display:block;
    width:100%;
    padding:12px;
    text-align:center;

}
.hero-container,
.innovation-row,
.about-row{
    flex-direction:column;
    text-align:center;
}

.hero-content,
.hero-image,
.innovation-content,
.innovation-image{
    width:100%;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.section-title h2,
.section-heading h2{
    font-size:28px;
}

.hero-image img,
.innovation-image img{
    width:100%;
    max-width:100%;
}

.about-grid,
.services-grid,
.values-grid,
.product-grid,
.partner-grid,
.projects-grid,
.presence-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    max-width:260px;
}

.org-row{
    flex-direction:column;
    align-items:center;
}

.org-box{
    width:100%;
    max-width:320px;
}

.footer{
    text-align:center;
}

}


/*==================================================
  SMALL MOBILE (480px and below)
==================================================*/
@media (max-width:480px){

.logo img{
    width:150px;
}

.hero-content h1{
    font-size:28px;
    line-height:1.3;
}

.hero-content p{
    font-size:15px;
}

.section-title h2{
    font-size:24px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    font-size:15px;
    padding:12px;
}

.service-card,
.product-card,
.partner-card,
.project-card,
.presence-card{
    padding:20px;
}

}











