/*====================================================
  WEBSITE DEVELOPMENT SONIPAT
  Creative Path Techno Solution
====================================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI",Arial,sans-serif;
    background:#f7f9fc;
    color:#333;
    line-height:1.7;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}
/* LINKS */

a{
    text-decoration:none;
    transition:.3s;
}

/* IMAGES */

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

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

.hero{

    background:linear-gradient(135deg,#0A2D63,#1565C0);

    color:#fff;

    padding:170px 0 100px;

}

.hero-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.hero-left{

    flex:1;

}

.hero-tag{

    display:inline-block;

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

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    font-size:15px;

    letter-spacing:.5px;

}

.hero h1{

    font-size:56px;

    line-height:1.2;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1 span{

    color:#FFD54F;

}

.hero p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;

    color:#eef3ff;

}

.hero-right{

    flex:1;

}
.hero-right img{
    width:100%;
    max-width:600px;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,.30);
    display:block;
    margin:auto;
}


/*====================================================
 BUTTONS
====================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-email{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    font-size:16px;

}

/* Primary */

.btn-primary{

    background:#ff9800;

    color:#fff;

}

.btn-primary:hover{

    background:#f57c00;

    transform:translateY(-3px);

}

/* Secondary */

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

}

.btn-secondary:hover{

    background:#fff;

    color:#1565C0;

}

/* WhatsApp */

.btn-whatsapp{

    background:#25D366;

    color:#fff;

}

.btn-whatsapp:hover{

    background:#1DA851;

}

/* Email */

.btn-email{

    background:#3949ab;

    color:#fff;

}

.btn-email:hover{

    background:#283593;

}

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

.hero-features{

    display:grid;

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

    gap:15px;

}

.hero-features div{

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

    padding:15px;

    border-radius:12px;

    backdrop-filter:blur(5px);

}

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

.services-section{

    padding:90px 0;

    background:#f8fbff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#0A2D63;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    font-size:18px;

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

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

    transition:.35s;

    border-top:5px solid #1565C0;

}

.service-card:hover{

    transform:translateY(-10px);

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

}

.service-card h3{

    color:#0A2D63;

    margin-bottom:15px;

    font-size:26px;

}

.service-card p{

    color:#666;

    margin-bottom:25px;

}

.service-card a{

    color:#1565C0;

    font-weight:600;

}

.service-card a:hover{

    color:#ff9800;

}

/*====================================================
 MOBILE
====================================================*/

@media(max-width:991px){

.hero{

    padding:140px 0 80px;

}

.hero-container{

    flex-direction:column;

    text-align:center;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:18px;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:1fr;

}

}

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

.why-us{
    padding:90px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.why-icon{
    font-size:55px;
    margin-bottom:20px;
}

.why-card h3{
    color:#0A2D63;
    margin-bottom:15px;
}

/*==============================
PROCESS
==============================*/

.process-section{
    padding:90px 0;
    background:#eef5ff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    width:100%;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.number{
    width:60px;
    height:60px;
    background:#1565C0;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
    margin:0 auto 25px;
}

/*==============================
INDUSTRIES
==============================*/

.industry-section{
    padding:90px 0;
    background:#fff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}
.industry-card{
    background:linear-gradient(135deg,#0A2D63,#1565C0);
    color:#fff;
    padding:28px;
    border-radius:15px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.industry-card:hover{
    transform:translateY(-8px);
}
/*==============================
PRICING
==============================*/

.pricing-section{
    padding:90px 0;
    background:#f7f9fc;
}

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

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

.price-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.price-card h3{
    margin-bottom:15px;
    color:#0A2D63;
}

.price{
    font-size:42px;
    font-weight:700;
    color:#0A2D63;
    margin:20px 0;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.price-card li{
    margin:12px 0;
}

.price-btn{
    display:inline-block;
    padding:14px 30px;
    background:#1565C0;
    color:#fff;
    border-radius:40px;
}

.featured{
    border:3px solid #1565C0;
}

.badge{
    display:inline-block;
    margin-bottom:20px;
    padding:8px 18px;
    background:#1565C0;
    color:#fff;
    border-radius:30px;
}

@media(max-width:992px){

    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

}

/*==============================
TESTIMONIAL
==============================*/

.testimonial-section{
padding:90px 0;
background:#fff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:#f8fbff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/*==============================
FAQ
==============================*/

.faq-section{
padding:90px 0;
background:#eef5ff;
}

details{
background:#fff;
padding:18px;
margin-bottom:18px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

summary{
cursor:pointer;
font-weight:600;
font-size:18px;
}

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

.final-cta{
padding:90px 0;
background:linear-gradient(135deg,#0A2D63,#1565C0);
text-align:center;
color:#fff;
}

.final-cta h2{
font-size:42px;
margin-bottom:20px;
}

.final-cta p{
font-size:20px;
margin-bottom:35px;
}

/*==============================
INTERNAL LINKS
==============================*/

.internal-links{
    padding:80px 0;
    background:#f8fbff;
}

.internal-links h2{
    text-align:center;
    font-size:42px;
    color:#0A2D63;
    margin-bottom:20px;
}

.link-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.link-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    color:#333;
    transition:.3s;
}

.link-card:hover{
    transform:translateY(-8px);
    border-top:5px solid #1565C0;
}

.link-card h3{
    color:#0A2D63;
    margin-bottom:12px;
}

@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.why-grid{
    grid-template-columns:1fr;
}

}
/*=================================
RELATED BLOGS
=================================*/

.related-blogs{
    padding:90px 0;
    background:#f7f9fc;
}

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

.related-blogs h2{
    text-align:center;
    font-size:42px;
    color:#0A2D63;
    margin-bottom:50px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.blog-card-content{
    padding:30px;
}

.blog-card h3{
    color:#0A2D63;
    margin-bottom:15px;
    font-size:24px;
}

.blog-card p{
    color:#666;
    margin-bottom:20px;
    line-height:1.7;
}

.blog-card a{
    color:#1565C0;
    font-weight:600;
    text-decoration:none;
}

.blog-card a:hover{
    color:#ff9800;
}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

}