/*======================================================
Tamkeen SAS Technical Services Co.
Premium Corporate Theme
Version 1.0
Author: ChatGPT
=======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/*======================================================
RESET
=======================================================*/

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;
background:#ffffff;
color:#222;
overflow-x:hidden;
line-height:1.7;

}

img{
max-width:100%;
display:block;
}

.md-card{
max-width:900px;
margin:auto;
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
text-align:center;
}

.md-card h2{
font-size:38px;
margin-bottom:25px;
color:#0f172a;
}

.md-card p{
font-size:17px;
line-height:1.9;
margin-bottom:20px;
color:#555;
}

.md-card h4{
margin-top:30px;
font-size:24px;
color:#16a34a;
}

.md-card span{
font-size:15px;
font-weight:600;
color:#777;
}


a{

text-decoration:none;
transition:.4s;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1400px;
margin:auto;

}

/*======================================================
COLORS
=======================================================*/

:root{

--primary:#0B1F3A;
--secondary:#0E7A43;
--accent:#13b05a;

--white:#ffffff;

--black:#111111;

--text:#666666;

--light:#f7f8fb;

--border:#e8e8e8;

--shadow:0 15px 40px rgba(0,0,0,.08);

--radius:18px;

}

/*======================================================
LOADER
=======================================================*/

#loader{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
z-index:999999;

}

.loader-logo{

animation:loader 2s infinite;

}

.loader-logo img{

width:110px;

}

@keyframes loader{

0%{

transform:scale(.8);
opacity:.4;

}

50%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(.8);

opacity:.4;

}

}

/*======================================================
TOP HEADER
=======================================================*/

.top-bar{

background:var(--primary);

padding:12px 0;

font-size:14px;

}

.top-bar .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-bar a{

color:#fff;

margin-right:25px;

}

.top-bar i{

margin-right:8px;

color:var(--accent);

}

.right a{

margin-left:18px;

font-size:16px;

}

/*======================================================
HEADER
=======================================================*/

header{

position:fixed;

top:48px;

width:100%;

left:0;

z-index:999;

padding:18px 0;

transition:.4s;

}

header.sticky{

background:#fff;

box-shadow:var(--shadow);

top:0;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

width:180px;

}

nav ul{

display:flex;

gap:40px;

}

nav ul li a{

font-weight:600;

color:#fff;

font-size:15px;

position:relative;

}

header.sticky nav ul li a{

color:#222;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--accent);

transition:.4s;

}

nav ul li a:hover::after{

width:100%;

}

.quote-btn a{

background:var(--accent);

color:#fff;

padding:14px 30px;

border-radius:50px;

font-weight:600;

box-shadow:0 12px 30px rgba(0,0,0,.2);

}

.quote-btn a:hover{

transform:translateY(-3px);

background:#0b8b45;

}

.mobile-menu{

display:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

/*======================================================
HERO
=======================================================*/

.hero{

position:relative;

height:100vh;

background:url("../images/hero.jpg") center center/cover no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

}

.video-overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(rgba(4,19,44,.82),rgba(3,17,41,.90));

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

}

.hero-content h5{

color:var(--accent);

font-size:22px;

letter-spacing:4px;

margin-bottom:15px;

}

.hero-content h1{

font-size:72px;

font-family:'Poppins',sans-serif;

color:#fff;

font-weight:800;

line-height:1.2;

}

.hero-content h1 span{

display:block;

color:var(--accent);

}

.hero-content p{

margin-top:25px;

font-size:20px;

color:#d7d7d7;

line-height:1.8;

}

.hero-buttons{

margin-top:45px;

display:flex;

justify-content:center;

gap:20px;

}

.btn-primary{

background:var(--accent);

color:#fff;

padding:18px 42px;

border-radius:60px;

font-weight:600;

display:inline-block;

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 20px 35px rgba(0,0,0,.2);

}

.btn-secondary{

border:2px solid #fff;

padding:18px 42px;

color:#fff;

border-radius:60px;

font-weight:600;

}

.btn-secondary:hover{

background:#fff;

color:var(--primary);

}

/* Scroll Down */

.scroll-down{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

}

.scroll-down span{

display:block;

width:28px;

height:48px;

border:2px solid #fff;

border-radius:50px;

position:relative;

}

.scroll-down span::before{

content:"";

position:absolute;

width:6px;

height:12px;

background:#fff;

left:50%;

transform:translateX(-50%);

top:8px;

border-radius:20px;

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:0;

top:8px;

}

100%{

opacity:1;

top:22px;

}

}/*======================================================
ABOUT SECTION
=======================================================*/

.about-home{

padding:120px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image{

position:relative;

overflow:hidden;

border-radius:20px;

}

.about-image img{

width:100%;

height:650px;

object-fit:cover;

border-radius:20px;

transition:.6s;

}

.about-image:hover img{

transform:scale(1.08);

}

.experience-box{

position:absolute;

bottom:35px;

right:35px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

padding:35px;

border-radius:18px;

color:#fff;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.experience-box h2{

font-size:55px;

font-family:Poppins;

}

.experience-box p{

font-size:18px;

}

.about-content h6{

color:var(--accent);

font-size:18px;

font-weight:700;

letter-spacing:3px;

margin-bottom:20px;

}

.about-content h2{

font-size:52px;

font-family:Poppins;

line-height:1.3;

margin-bottom:30px;

color:var(--primary);

}

.about-content p{

font-size:18px;

color:#666;

margin-bottom:25px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin:35px 0;

}

.about-features div{

display:flex;

align-items:center;

font-weight:600;

font-size:17px;

}

.about-features i{

margin-right:15px;

font-size:22px;

color:var(--accent);

}

/*======================================================
SECTION TITLE
=======================================================*/

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h6{

color:var(--accent);

letter-spacing:3px;

font-size:18px;

margin-bottom:15px;

}

.section-title h2{

font-size:48px;

font-family:Poppins;

margin-bottom:20px;

color:var(--primary);

}

.section-title p{

max-width:700px;

margin:auto;

font-size:18px;

color:#666;

}

/*======================================================
WHY CHOOSE US
=======================================================*/

.why-us{

padding:120px 0;

background:#f8fafc;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:45px;

border-radius:18px;

text-align:center;

transition:.45s;

box-shadow:0 12px 35px rgba(0,0,0,.05);

position:relative;

overflow:hidden;

}

.why-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--accent),var(--secondary));

transform:scaleX(0);

transition:.4s;

}

.why-card:hover::before{

transform:scaleX(1);

}

.why-card:hover{

transform:translateY(-15px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.why-card .icon{

width:90px;

height:90px;

margin:auto;

background:linear-gradient(135deg,var(--primary),var(--secondary));

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:30px;

}

.why-card i{

font-size:38px;

color:#fff;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

font-family:Poppins;

color:var(--primary);

}

.why-card p{

color:#666;

}

/*======================================================
COUNTER
=======================================================*/

.counter-section{

padding:120px 0;

background:linear-gradient(rgba(6,22,48,.95),rgba(6,22,48,.95)),
url("../images/counter-bg.jpg");

background-size:cover;

background-position:center;

background-attachment:fixed;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

}

.counter-box{

text-align:center;

color:#fff;

}

.counter-box h2{

font-size:72px;

font-family:Poppins;

display:inline-block;

color:var(--accent);

}

.counter-box span{

font-size:45px;

color:#fff;

margin-left:5px;

}

.counter-box p{

margin-top:15px;

font-size:19px;

}

/*======================================================
SERVICES
=======================================================*/

.services-home{

padding:120px 0;

background:#fff;

}

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.service-card{

background:#fff;

padding:45px;

border-radius:20px;

transition:.45s;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

position:relative;

overflow:hidden;

}

.service-card::after{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(120deg,
transparent,
rgba(255,255,255,.3),
transparent);

transition:.8s;

}

.service-card:hover::after{

left:100%;

}

.service-card:hover{

background:linear-gradient(135deg,var(--primary),var(--secondary));

transform:translateY(-12px);

}

.service-card i{

font-size:60px;

color:var(--accent);

margin-bottom:25px;

transition:.4s;

}

.service-card h3{

font-size:28px;

font-family:Poppins;

margin-bottom:15px;

color:var(--primary);

transition:.4s;

}

.service-card p{

color:#666;

transition:.4s;

}

.service-card:hover i,

.service-card:hover h3,

.service-card:hover p{

color:#fff;

}/*======================================================
FEATURED PROJECTS
=======================================================*/

.projects-home{

padding:120px 0;
background:#f8fafc;

}

.projects-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.project-card{

position:relative;
overflow:hidden;
border-radius:20px;
box-shadow:0 20px 45px rgba(0,0,0,.08);
cursor:pointer;

}

.project-card img{

width:100%;
height:450px;
object-fit:cover;
transition:.6s;

}

.project-card:hover img{

transform:scale(1.15);

}

.project-overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(to top,
rgba(4,20,45,.95),
rgba(4,20,45,.20));

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:40px;

opacity:0;

transition:.5s;

}

.project-card:hover .project-overlay{

opacity:1;

}

.project-overlay span{

display:inline-block;

background:var(--accent);

padding:8px 20px;

border-radius:50px;

color:#fff;

font-size:14px;

margin-bottom:20px;

width:max-content;

}

.project-overlay h3{

color:#fff;

font-size:28px;

font-family:Poppins;

margin-bottom:20px;

}

.project-overlay a{

display:inline-block;

color:#fff;

font-weight:600;

}

.project-overlay a:hover{

color:var(--accent);

}

/*======================================================
CLIENTS
=======================================================*/

.clients-section{

padding:120px 0;

background:#fff;

}

.clients-slider{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:40px;

align-items:center;

}

.client-logo{

padding:35px;

border:1px solid #eee;

border-radius:15px;

background:#fff;

transition:.4s;

display:flex;

justify-content:center;

align-items:center;

height:130px;

}

.client-logo:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.client-logo img{

max-height:70px;

filter:grayscale(100%);

opacity:.7;

transition:.4s;

}

.client-logo:hover img{

filter:none;

opacity:1;

}

/*======================================================
TESTIMONIALS
=======================================================*/

.testimonial-section{

padding:120px 0;

background:#f7f9fc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.testimonial-card{

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.4s;

position:relative;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card i{

font-size:45px;

color:var(--accent);

margin-bottom:25px;

}

.testimonial-card p{

font-size:17px;

color:#666;

margin-bottom:25px;

}

.testimonial-card h4{

font-size:22px;

font-family:Poppins;

color:var(--primary);

margin-bottom:6px;

}

.testimonial-card span{

color:#888;

}

/*======================================================
CTA
=======================================================*/

.cta-section{

padding:110px 0;

background:linear-gradient(135deg,var(--primary),var(--secondary));

text-align:center;

color:#fff;

}

.cta-content h2{

font-size:52px;

font-family:Poppins;

margin-bottom:20px;

}

.cta-content p{

max-width:750px;

margin:auto;

font-size:19px;

line-height:1.8;

margin-bottom:45px;

color:#dcdcdc;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:25px;

}

/*======================================================
FOOTER
=======================================================*/

footer{

background:#07172d;

padding-top:90px;

color:#ddd;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:50px;

padding-bottom:60px;

}

.footer-logo{

width:170px;

margin-bottom:25px;

}

footer h3{

color:#fff;

font-size:22px;

margin-bottom:25px;

font-family:Poppins;

}

footer p{

line-height:1.9;

color:#cfcfcf;

}

footer ul li{

margin-bottom:15px;

}

footer ul li a{

color:#ddd;

transition:.4s;

}

footer ul li a:hover{

color:var(--accent);

padding-left:8px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:45px;

height:45px;

background:#0f2b4f;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

transition:.4s;

}

.footer-social a:hover{

background:var(--accent);

transform:translateY(-5px);

}

footer hr{

border:none;

height:1px;

background:#1c3558;

}

.copyright{

padding:30px 0;

text-align:center;

font-size:15px;

color:#bfbfbf;

}

/*======================================================
WHATSAPP BUTTON
=======================================================*/

.whatsapp{

position:fixed;

right:30px;

bottom:35px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:#fff;

box-shadow:0 15px 35px rgba(0,0,0,.25);

z-index:999;

transition:.4s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*======================================================
TOP BUTTON
=======================================================*/

#topBtn{

position:fixed;

left:30px;

bottom:35px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

transition:.4s;

z-index:999;

}

#topBtn:hover{

background:var(--accent);

transform:translateY(-6px);

}

/*======================================================
ANIMATIONS
=======================================================*/

.fade-up{

animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

.zoom{

animation:zoom .7s ease;

}

@keyframes zoom{

0%{

transform:scale(.8);

opacity:0;

}

100%{

transform:scale(1);

opacity:1;

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

@media (max-width:1200px){

.container{
width:95%;
}

.hero-content h1{
font-size:58px;
}

.about-grid{
grid-template-columns:1fr;
gap:60px;
}

.why-grid,
.service-grid,
.projects-grid,
.testimonial-grid,
.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.clients-slider{

grid-template-columns:repeat(3,1fr);

}

}

/*============================*/

@media(max-width:991px){

.top-bar{

display:none;

}

header{

top:0;
background:#07172d;

}

nav{

position:fixed;

right:-100%;

top:0;

width:320px;

height:100vh;

background:#07172d;

display:flex;

justify-content:center;

align-items:center;

transition:.5s;

}

nav.active{

right:0;

}

nav ul{

flex-direction:column;

text-align:center;

gap:30px;

}

nav ul li a{

color:#fff;

font-size:20px;

}

.mobile-menu{

display:block;

color:#fff;

font-size:30px;

z-index:9999;

}

.quote-btn{

display:none;

}

.hero{

height:90vh;

padding:0 20px;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.section-title h2{

font-size:40px;

}

.about-content h2{

font-size:40px;

}

.cta-content h2{

font-size:42px;

}

}

/*============================*/

@media(max-width:768px){

.hero{

height:85vh;

}

.hero-content h5{

font-size:16px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.section-title h2{

font-size:34px;

}

.about-content h2{

font-size:34px;

}

.about-features{

grid-template-columns:1fr;

}

.why-grid,
.service-grid,
.projects-grid,
.counter-grid,
.testimonial-grid{

grid-template-columns:1fr;

}

.clients-slider{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.cta-buttons{

flex-direction:column;

}

.cta-content h2{

font-size:34px;

}

.counter-box h2{

font-size:55px;

}

}

/*============================*/

@media(max-width:576px){

.logo img{

width:140px;

}

.hero-content h1{

font-size:30px;

}

.hero-content p{

font-size:15px;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

padding:16px;

}

.experience-box{

position:relative;

right:0;

bottom:0;

margin-top:20px;

}

.clients-slider{

grid-template-columns:1fr;

}

.whatsapp{

width:58px;

height:58px;

font-size:26px;

right:20px;

bottom:20px;

}

#topBtn{

left:20px;

bottom:20px;

width:55px;

height:55px;

}

}

/*=========================================================
GLASS EFFECT
=========================================================*/

.glass{

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.15);

}

/*=========================================================
CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#ececec;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--primary),var(--secondary));

border-radius:50px;

}

/*=========================================================
TEXT SELECTION
=========================================================*/

::selection{

background:var(--accent);

color:#fff;

}

/*=========================================================
IMAGE HOVER
=========================================================*/

img{

transition:.5s;

}

img:hover{

transform:scale(1.02);

}

/*=========================================================
BUTTON RIPPLE
=========================================================*/

.btn-primary,
.btn-secondary{

position:relative;

overflow:hidden;

}

.btn-primary::before,
.btn-secondary::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.25);

transform:skewX(-30deg);

transition:.8s;

}

.btn-primary:hover::before,
.btn-secondary:hover::before{

left:120%;

}

/*=========================================================
SECTION SPACING
=========================================================*/

section{

overflow:hidden;

}

/*=========================================================
END OF CSS
=========================================================*/
.contact-section{
padding:120px 0;
background:#fff;
}

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

.contact-info{
background:#f8fafc;
padding:45px;
border-radius:22px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-box{
display:flex;
gap:22px;
margin-bottom:30px;
}

.contact-box i{
width:60px;
height:60px;
border-radius:50%;
background:linear-gradient(135deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
flex-shrink:0;
}

.contact-box h3{
font-family:Poppins;
font-size:22px;
color:var(--primary);
margin-bottom:6px;
}

.contact-box p,
.contact-box a{
color:#666;
font-size:17px;
}

.contact-social{
display:flex;
gap:15px;
margin-top:30px;
}

.contact-social a{
width:48px;
height:48px;
border-radius:50%;
background:var(--primary);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
transition:.4s;
}

.contact-social a:hover{
background:var(--accent);
transform:translateY(-5px);
}

.contact-form{
background:linear-gradient(135deg,var(--primary),var(--secondary));
padding:50px;
border-radius:24px;
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

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

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:18px 22px;
border:none;
outline:none;
border-radius:12px;
font-family:Inter;
font-size:16px;
background:#fff;
color:#222;
}

.form-group textarea{
resize:none;
}

.contact-form .btn-primary{
border:none;
cursor:pointer;
width:100%;
font-size:17px;
}

.map-section iframe{
display:block;
filter:grayscale(20%);
}

@media(max-width:991px){
.contact-grid{
grid-template-columns:1fr;
}

.contact-form{
padding:35px 25px;
}
}.project-overlay h3,
.project-overlay span,
.project-overlay a{
background: transparent !important;
}

.project-overlay h3{
display:block;
color:#fff !important;
padding:0 !important;
line-height:1.25;
}

.project-overlay span{
background:var(--accent) !important;
color:#fff !important;
padding:8px 18px !important;
border-radius:50px !important;
}/* Managing Director Message */

.md-message-section{
    padding:80px 0;
    background:#f8fafc;
}

.md-message-box{
    max-width:1000px;
    margin:auto;
    background:#ffffff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.md-message-box:hover{
    transform:translateY(-8px);
}

.md-header h2{
    font-size:42px;
    margin-bottom:10px;
    color:#0f172a;
}

.md-line{
    width:120px;
    height:5px;
    background:#22c55e;
    border-radius:20px;
    margin-bottom:25px;
}

.md-message-box p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.signature-area{
    margin-top:35px;
}

.signature-name{
    font-family:cursive;
    font-size:34px;
    color:#16a34a;
    font-weight:bold;
}

.signature-title{
    font-size:18px;
    color:#666;
    margin-top:5px;
}

@media(max-width:768px){

.md-message-box{
    padding:30px;
}

.md-header h2{
    font-size:30px;
}

.signature-name{
    font-size:24px;
}

}

/*======================================================
INNER PAGE HERO SAFE FIX
=======================================================*/

.inner-hero{
  min-height:320px;
  padding:130px 20px 70px !important;
  background:linear-gradient(135deg,rgba(4,19,44,.92),rgba(14,122,67,.88)) !important;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.inner-hero-content h1{
  font-size:56px;
  color:#ffffff;
  font-family:Poppins, sans-serif;
  font-weight:800;
  margin:0 0 12px 0 !important;
}

.inner-hero-content p{
  color:#e5e7eb;
  font-size:20px;
}

/*======================================================
NON-HOME PAGE HEADER SAFE FIX
=======================================================*/

body:not(.home-page) header{
  position:relative !important;
  top:auto !important;
  background:#ffffff !important;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}

body:not(.home-page) header nav ul li a{
  color:#0B1F3A !important;
}

body:not(.home-page) header .mobile-menu{
  color:#0B1F3A !important;
}

/*======================================================
ABOUT IMAGE FIX
=======================================================*/

.about-home{
  padding:100px 0 !important;
}

.about-image img{
  height:520px !important;
  object-fit:cover !important;
  border-radius:22px !important;
}

/*======================================================
MANAGING DIRECTOR MESSAGE
=======================================================*/

.md-message-section{
  padding:90px 20px;
  background:#f8fafc;
}

.md-message-box{
  max-width:1000px;
  margin:auto;
  background:linear-gradient(135deg,#062b22,#0e7a43);
  color:#fff;
  padding:55px;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  animation:fadeUp .9s ease both;
}

.md-header h2{
  font-size:42px;
  line-height:1.2;
  color:#fff;
  margin-bottom:14px;
}

.md-line{
  width:110px;
  height:5px;
  background:#22c55e;
  border-radius:30px;
  margin-bottom:28px;
}

.md-message-box p{
  font-size:18px;
  line-height:1.9;
  color:#f1f5f9;
  margin-bottom:18px;
}

.signature-area{
  margin-top:35px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.18);
}

.signature-name{
  font-family:cursive;
  font-size:34px;
  color:#86efac;
  font-weight:700;
}

.signature-title{
  color:#e5e7eb;
  font-size:16px;
  margin-top:6px;
}

@media(max-width:768px){
  .inner-hero{
    min-height:260px;
    padding:95px 20px 55px !important;
  }

  .inner-hero-content h1{
    font-size:38px;
  }

  .inner-hero-content p{
    font-size:16px;
  }

  .about-image img{
    height:360px !important;
  }

  .md-message-box{
    padding:32px 24px;
  }

  .md-header h2{
    font-size:30px;
  }

  .signature-name{
    font-size:25px;
  }
}
