*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f8fc;
    color:#111827;
}

/* ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ NAVBAR HEADER DESIGNING ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Navbar */
header{
    padding:25px 0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    
}

.logo .logo-icon {
    width:60px;
    height:40px;
}

.logo .logo-text {
    width: 140px;
    height: 35px;

}



.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#555;
    font-size:14px;
    font-weight:500;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: #3d5afe;
    transform: translateY(-3px);
}

 .nav-links .btn{
    background:#3f51d8;
    color:#fff;
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}
/* ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ HOME PAGE HERO HEADER DESIGNING ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ */
.btn {
    background:#3f51d8;
    color:#fff;
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition: all 0.3s ease;
}

.btn:hover {
   opacity:.9;
}

.btn small {
    width: 50px;
}


/* Hero Section */
.hero{
    padding:60px 0 80px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:700;
    color:#10153d;
}

.hero-content p{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:30px;
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}

/* Features */
.features{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}
.icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#eef2ff;
    color:#3d5afe;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:26px;
    margin-bottom:15px;
}

.feature-card h4{
    margin-bottom:10px;
    color:#111827;
}

.feature-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ END OF HOME PAGE HERO HEADER CODING $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$  */

/* ************************************** ABOUT US PAGE SHOWCASE CODING START ***************************************** */

/* About */

.about-section{
    padding:20px 0 80px;
}

.breadcrumb{
    font-size:13px;
    color:#777;
    margin-bottom:20px;
}

.breadcrumb span{
    margin:0 8px;
}

.section-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:60px;
    position:relative;
}

.section-title span{
    display:block;
    width:55px;
    height:4px;
    background:#3448d6;
    margin-top:10px;
    border-radius:20px;
}

.about-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:34px;
    margin-bottom:25px;
}

.about-text p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

.about-text ul{
    list-style:none;
    margin:25px 0;
}

.about-text ul li{
    margin-bottom:14px;
    color:#444;
    font-weight:500;
}

.about-text ul li::before{
    content:"✓";
    color:#3448d6;
    font-weight:bold;
    margin-right:10px;
}

.about-image{
    flex:1.2;
}

.about-image img{
    width:100%;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* Stats */

.stats{
    margin-top:60px;
    background:#eef1ff;
    border-radius:18px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-item{
    text-align:center;
}

.stat-item i{
    font-size:24px;
    color:#3448d6;
    margin-bottom:12px;
}

.stat-item h3{
    font-size:34px;
    color:#111;
    margin-bottom:8px;
}

.stat-item p{
    color:#666;
    font-size:14px;
}

/* *********************************************** ABOUT US CODE END ***************************************** */

/* ############################################# SERVICES PAGE CODING STARTS ###################################### */
* Services */

.services{
    padding:80px 0;
}

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#111827;
}

.section-title span{
    display:block;
    width:55px;
    height:4px;
    background:#3b4ddb;
    margin:12px auto 0;
    border-radius:10px;
}

.section-subtitle{
    text-align:center;
    max-width:600px;
    margin:20px auto 60px;
    color:#6b7280;
    line-height:1.7;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:14px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #eef1f6;
    box-shadow:0 4px 15px rgba(0,0,0,.03);
    transition:.3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.icon-box{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#eef1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon-box i{
    font-size:28px;
    color:#3b4ddb;
}

.service-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#111827;
}

.service-card p{
    color:#6b7280;
    line-height:1.7;
    font-size:14px;
}
/* ############################################# SERVICES PAGE CODING END #################################### */

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& CONTACT US PAGE CODING START &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* Contact */

.contact-section{
    padding:70px 0 100px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h1{
    font-size:52px;
    font-weight:700;
    color:#18223c;
}

.section-heading span{
    display:block;
    width:60px;
    height:4px;
    background:#3f51d8;
    margin:12px auto 18px;
    border-radius:10px;
}

.section-heading p{
    color:#6b7280;
    font-size:15px;
}

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:70px;
}

/* Contact Info */

.contact-info{
    flex:1;
    
    justify-items: flex-start;
    
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:35px;
}

.contact-info .icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#eef1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3f51d8;
    font-size:16px;
}

.info-item h4{
    margin-bottom:6px;
    color:#18223c;
}

.info-item p{
    color:#555;
    line-height:1.6;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:15px;
}

.social-icons a:nth-child(1){
    background:#1877f2;
}

.social-icons a:nth-child(2){
    background:#e4405f;
}

.social-icons a:nth-child(3){
    background:#0a66c2;
}

.social-icons a:nth-child(4){
    background:#1da1f2;
}

/* Form */

.contact-form{
    flex:1.4;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #e4e7ef;
    border-radius:6px;
    padding:14px 16px;
    outline:none;
    background:#fff;
    font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#3f51d8;
}

.contact-form button{
    width:150px;
    border:none;
    background:#3f51d8;
    color:#fff;
     border-radius:12px;
    padding:13px 20px;
    /* border-radius:30px; */
    cursor:pointer;
    font-weight:500;
    transition:.3s;
}

.contact-form button:hover{
    opacity:.9;
}

.footer {
    background: linear-gradient(
        135deg,
        #2039b8 0%,
        #2e47c9 50%,
        #384fda 100%
    );
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.05);
    transform: skew(-35deg);
}

.footer::before {
    width: 250px;
    height: 250px;
    right: -100px;
    top: -50px;
}

.footer::after {
    width: 180px;
    height: 180px;
    right: 120px;
    bottom: -80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 20px 35px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
     margin-bottom: 15px;
}
.footer-logo .logo-icon {
    width: 60px;
    height: 40px;
   
}
.footer-logo .logo-text {
    width: 140px;
    height: 35;
   
}

.company-info p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-list li {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: white;
    color: #3048d3;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 18px 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

@media(max-width:992px){

.hero-wrapper{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:42px;
}

.features{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){

.nav-links{
    display:none;
}

.features{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:34px;
}
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
