/* ============================= */
/* OUR STRENGTH SECTION */
/* ============================= */

.strength-section{
background:linear-gradient(135deg,#7a0000,#a30000);
padding:100px 0;
color:white;
}

.strength-section h2{
font-size:42px;
font-weight:700;
margin-bottom:60px;
}

/* rows spacing */

.strength-row{
margin-bottom:70px;
}

/* image box */

.strength-img-box{
background:#f4f4f4;
padding:20px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.strength-img-box img{
width:100%;
border-radius:12px;
}

/* text */

.strength-section h4{
font-size:30px;
font-weight:700;
color:#ffffff;
margin-bottom:15px;
}

.strength-section p{
font-size:18px;
font-weight:600;
line-height:1.8;
color:#ffffff;
}

/* ============================= */
/* PRESENCE SECTION */
/* ============================= */



.presence-section{
padding:100px 0;
background:#f8f9fc;
}

.presence-section h2{
font-size:40px;
font-weight:700;
margin-bottom:50px;
}

/* map container */

.map-box{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* map image */

.india-map{
width:100%;
max-width:750px;
height:auto;
display:block;
margin:auto;
filter:none !important;
opacity:1 !important;
}

/* floating animation */

.map-box{
animation:floatMap 6s ease-in-out infinite;
}

@keyframes floatMap{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}
/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablets */

@media (max-width:992px){

.strength-section{
padding:70px 0;
}

.strength-section h2{
font-size:34px;
}

.strength-section h4{
font-size:24px;
}

.strength-section p{
font-size:16px;
}

.strength-row{
margin-bottom:50px;
}

.strength-img-box{
margin-bottom:25px;
}

}


/* Mobile */

@media (max-width:768px){

.strength-section{
text-align:center;
}

.strength-section h2{
font-size:30px;
}

.strength-section h4{
font-size:22px;
}

.strength-section p{
font-size:15px;
line-height:1.7;
}

.strength-img-box{
padding:15px;
}

.highlight-card{
padding:25px;
}

.highlight-card i{
font-size:32px;
}

.presence-section{
padding:70px 0;
}

.presence-section h2{
font-size:28px;
}

.map-box{
margin-bottom:30px;
}

}


/* Small Mobile */

@media (max-width:480px){

.strength-section h2{
font-size:26px;
}

.strength-section h4{
font-size:20px;
}

.strength-section p{
font-size:14px;
}

.highlight-card{
padding:20px;
}

.presence-card{
padding:15px;
}

}
/* footer section */

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

padding:0 20px;

}

/* logo */

.footer-logo{

height:60px;

margin-bottom:15px;

}

/* text */

.footer-desc{

font-size:14px;

line-height:1.7;

color:#bbb;

}

/* headings */

.footer-col h3{

color:white;

margin-bottom:20px;

font-size:20px;

position:relative;

}

/* underline animation */

.footer-col h3::after{

content:"";

width:40px;

height:3px;

background:#e31b23;

position:absolute;

left:0;

bottom:-8px;

}

/* list */

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:10px;

font-size:14px;

}

/* links */

.footer-col ul li a{

color:#bbb;

text-decoration:none;

transition:.3s;

}

.footer-col ul li a:hover{

color:#e31b23;

padding-left:5px;

}

/* social icons */

.social-icons{

margin-top:20px;

}

.social-icons a{

display:inline-block;

width:40px;

height:40px;

line-height:40px;

text-align:center;

border-radius:50%;

background:#222;

color:white;

margin-right:10px;

transition:.3s;

}

.social-icons a:hover{

background:#e31b23;

transform:translateY(-4px);

}

/* bottom */

.footer-bottom{

text-align:center;

border-top:1px solid #333;

margin-top:40px;

padding-top:15px;

font-size:14px;

color:#aaa;

}

/* responsive */

@media(max-width:768px){

.site-footer{

text-align:center;

}

.footer-col h3::after{

left:50%;

transform:translateX(-50%);

}
}

/* ============================= */
/* INDIA MAP ANIMATION */
/* ============================= */

.india-map{
width:100%;
max-width:420px;
display:block;
margin:auto;
}

/* base map */

.india-base{
fill:#ffffff;
stroke:#999;
stroke-width:2;
}

/* presence dots */

.presence-point{
fill:#a30000;
animation:pulse 2s infinite;
}

/* pulse animation */

@keyframes pulse{

0%{
transform:scale(1);
opacity:1;
}

50%{
transform:scale(1.4);
opacity:0.6;
}

100%{
transform:scale(1);
opacity:1;
}

}

/* floating map */

.map-box{
animation:floatMap 5s ease-in-out infinite;
}

@keyframes floatMap{

0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}

}

/* MAP IMPROVEMENT */

.india-map{
width:100%;
max-width:420px;
display:block;
margin:auto;
filter:grayscale(100%);
opacity:0.9;
transition:0.4s;
}

.map-box{
animation:floatMap 6s ease-in-out infinite;
}

@keyframes floatMap{

0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}

}