/* ======================================================
   MindMedia Professional Website
   Version : 1.1
   File    : style.css
====================================================== */

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

/* ---------- Reset ---------- */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.6;
}

/* ---------- Common ---------- */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ---------- Header ---------- */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(11,19,32,.90);

    backdrop-filter:blur(10px);

    z-index:999;

    transition:.4s;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

/* ---------- Logo ---------- */

.logo img{

    height:80px;

    width:auto;

    display:block;

}
/* ---------- Navigation ---------- */

nav ul{

    display:flex;

    gap:30px;

}

nav ul li a{

    color:#fff;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#00AEEF;

}

/* ---------- Hero ---------- */

.hero{

    height:100vh;

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

    position:relative;

}

/* ---------- Overlay ---------- */

.overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(7,15,35,.72);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

/* ---------- Hero Content ---------- */

.hero-content{

    width:900px;

    color:#fff;

    padding:20px;

}

.hero-content h1{

    font-size:58px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.2;

}

.hero-content p{

    font-size:20px;

    margin-bottom:40px;

    color:#f0f0f0;

}

/* ---------- Hero Buttons ---------- */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ---------- Primary Button ---------- */

.btn-primary{

    background:#0056D2;

    color:#fff;

    padding:15px 35px;

    border-radius:6px;

    transition:.3s;

    font-weight:600;

}

.btn-primary:hover{

    background:#003e98;

}

/* ---------- Secondary Button ---------- */

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:6px;

    transition:.3s;

    font-weight:600;

}

.btn-secondary:hover{

    background:#fff;

    color:#0B1320;

}

/* ---------- Sections ---------- */

section{

    padding:90px 0;

}

section h2{

    font-size:38px;

    text-align:center;

    margin-bottom:25px;

    color:#0B1320;

}

section p{

    text-align:center;

    max-width:850px;

    margin:auto;

    font-size:17px;

    color:#555;

}

/* ---------- Footer ---------- */

footer{

    background:#0B1320;

    color:#fff;

    text-align:center;

    padding:30px;

    margin-top:60px;

}

footer p{

    color:#fff;

    font-size:15px;

}
/* ===================================
   SERVICES SECTION
=================================== */

.services{

    background:#f4f7fb;

    padding:100px 0;

}

.section-text{

    text-align:center;

    color:#666;

    margin-bottom:60px;

}

.service-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#ffffff;

    padding:35px;

    border-radius:15px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-card i{

    font-size:55px;

    color:#0078ff;

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;

    color:#0B1320;

}

.service-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

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

.about-section{

padding:100px 0;

background:#ffffff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:15px;

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

}

.about-content h2{

font-size:42px;

margin-bottom:25px;

color:#0B1320;

}

.about-content p{

text-align:left;

margin-bottom:20px;

color:#555;

line-height:1.9;

}

.about-content ul{

margin:30px 0;

padding-left:20px;

}

.about-content ul li{

margin-bottom:15px;

font-size:17px;

color:#333;

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

.why-us{

padding:100px 0;

background:#f8f9fc;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:40px;

margin-bottom:15px;

color:#0B1320;

}

.section-title p{

max-width:700px;

margin:auto;

color:#666;

}

.why-grid{

display:grid;

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

gap:30px;

}

.why-card{

background:#ffffff;

padding:40px 30px;

border-radius:15px;

text-align:center;

transition:.4s;

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

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-card i{

font-size:55px;

color:#0056D2;

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

color:#0B1320;

}

.why-card p{

font-size:15px;

line-height:1.8;

color:#666;

}
/*==========================================
STATISTICS SECTION
==========================================*/

.stats-section{

    padding:100px 0;

    background:#0B1320;

    color:#ffffff;

}

.stats-section .section-title h2{

    color:#ffffff;

}

.stats-section .section-title p{

    color:#d8d8d8;

}

.stats-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.stats-card{

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

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

    border-radius:15px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

}

.stats-card:hover{

    transform:translateY(-10px);

    background:#0056D2;

}

.stats-card h3{

    font-size:50px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:15px;

}

.stats-card p{

    color:#e5e5e5;

    font-size:17px;

}

/*==========================================
PROJECT GALLERY
==========================================*/

.gallery-preview{

    padding:100px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.gallery-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

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

    transition:.4s;

}

.gallery-card:hover{

    transform:translateY(-10px);

}

.gallery-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.gallery-content{

    padding:25px;

}

.gallery-content h3{

    margin-bottom:10px;

    color:#0B1320;

}

.gallery-content p{

    text-align:left;

    color:#666;

}

.gallery-button{

    text-align:center;

    margin-top:50px;

}

/*==========================================
CALL TO ACTION
==========================================*/

.cta-section{

    background:#0056D2;

    color:#ffffff;

    padding:100px 0;

    text-align:center;

}

.cta-section h2{

    font-size:42px;

    margin-bottom:20px;

    color:#ffffff;

}

.cta-section p{

    max-width:850px;

    margin:0 auto 40px;

    color:#e8e8e8;

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-section .btn-primary{

    background:#ffffff;

    color:#0056D2;

}

.cta-section .btn-primary:hover{

    background:#f3f3f3;

}

.cta-section .btn-secondary{

    border:2px solid #ffffff;

    color:#ffffff;

}

.cta-section .btn-secondary:hover{

    background:#ffffff;

    color:#0056D2;

}

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

.footer{

    background:#0B1320;

    color:#ffffff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

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

    gap:40px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

    font-size:22px;

}

.footer-column p{

    color:#d6d6d6;

    line-height:1.9;

    text-align:left;

}

.footer-column ul{

    padding:0;

}

.footer-column ul li{

    list-style:none;

    margin-bottom:12px;

    color:#d6d6d6;

}

.footer-column ul li a{

    color:#d6d6d6;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#00AEEF;

}

.footer hr{

    margin:50px 0 25px;

    border:none;

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

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    color:#cccccc;

    text-align:center;

}

/*==========================================
PAGE BANNER
==========================================*/

.page-banner{

height:400px;

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

position:relative;

display:flex;

align-items:center;

justify-content:center;

}

.page-banner .overlay{

background:rgba(11,19,32,.75);

width:100%;

height:100%;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.page-banner h1{

color:#fff;

font-size:60px;

margin-bottom:20px;

}

.page-banner p{

color:#fff;

font-size:20px;

}

/*==========================================
ABOUT PAGE
==========================================*/

.about-page{

padding:100px 0;

background:#fff;

}

.about-page h2{

margin-bottom:30px;

}

.about-page p{

max-width:900px;

margin:0 auto 20px;

text-align:center;

line-height:1.9;

color:#555;

}

.mission{

padding:100px 0;

background:#f7f9fc;

}

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

.services-page{

    padding:100px 0;

    background:#ffffff;

}

.services-page .service-card{

    min-height:320px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.services-page .service-card p{

    text-align:center;

    margin-top:15px;

    line-height:1.8;

}

/*==========================================
GALLERY PAGE
==========================================*/

.gallery-page{

    padding:100px 0;

    background:#f7f9fc;

}

.gallery-page .gallery-card{

    overflow:hidden;

    border-radius:15px;

}

.gallery-page .gallery-card img{

    transition:.4s;

}

.gallery-page .gallery-card:hover img{

    transform:scale(1.08);

}

/*==========================================
CONTACT PAGE
==========================================*/

.contact-page{

padding:100px 0;

background:#ffffff;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:flex-start;

}

.contact-info h2,
.contact-form h2{

margin-bottom:25px;

}

.contact-info p{

margin-bottom:25px;

text-align:left;

line-height:1.8;

}

.contact-info i{

color:#0056D2;

margin-right:10px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

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

font-size:15px;

}

.contact-form textarea{

resize:vertical;

}

.contact-form button{

border:none;

cursor:pointer;

}

.map-section iframe{

width:100%;

height:450px;

border:0;

display:block;

}

/*==========================================
SCROLL TO TOP BUTTON
==========================================*/

#scrollTopBtn{

transition:.3s;

}

#scrollTopBtn:hover{

background:#003f9a !important;

transform:translateY(-5px);

}

/* ======================================
GLOBAL SMOOTH SCROLL
====================================== */

html{

    scroll-behavior:smooth;

}

body{

    overflow-x:hidden;

}

/*==========================================
404 PAGE
==========================================*/

.error-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0B1320,#0056D2);

    color:#fff;

    text-align:center;

}

.error-content{

    max-width:700px;

    margin:auto;

}

.error-content h1{

    font-size:160px;

    line-height:1;

    font-weight:800;

    margin-bottom:15px;

    color:#00AEEF;

}

.error-content h2{

    font-size:42px;

    margin-bottom:20px;

}

.error-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

    color:#d7dbe5;

}

.error-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================
PRIVACY PAGE
==========================================*/

.privacy-section{

    padding:100px 0;

    background:#ffffff;

}

.privacy-section h2{

    margin-bottom:30px;

}

.privacy-section h3{

    margin-top:40px;

    margin-bottom:15px;

    color:#0056D2;

}

.privacy-section p{

    line-height:1.9;

    margin-bottom:20px;

}

.privacy-section ul{

    margin-left:25px;

    margin-bottom:25px;

}

.privacy-section li{

    margin-bottom:10px;

}

/*==========================================
HEADER PHONE NUMBERS
==========================================*/

.header-phone{

    display:flex;

    align-items:center;

    gap:12px;

    margin-left:30px;

    white-space:nowrap;

}

.header-phone a{

    color:#ffffff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:6px;

    transition:0.3s;

}

.header-phone a:hover{

    color:#00AEEF;

}

.header-phone i{

    color:#00AEEF;

}

.header-phone span{

    color:#777;

}
