@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,900;1,100;1,300;1,700;1,900&display=swap');

body
    {
        line-height: 1.8;
        color: #11286d;
        font-size: 15px;
        font-family: 'lato', sans-serif;
    }

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0126f7;
}

.title-sm {
    font-size: 16px;
    letter-spacing: 1px;
}
a {
    font-weight: 700;
    transition: all 0.4s ease;
}

img {
    width: 100%;
}

small {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}


.navbar {
    border-bottom: 1px solid rgba(64, 7, 139, 0.1);
}

.logo-text {
    font-size: 22px;
    text-transform: uppercase;
    color:#11245a !important;
}

.navbar .nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .navbar-nav .nav-link.active {
    color: #5e4bda;
}

#home {
    background: linear-gradient( rgba(17, 36, 90, 0.8), rgba(17, 36, 90, 0.8)), url(../img/hero.avif);
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

#home h1 {
    font-weight: 700;
}

#home p {
    max-width: 550px;
    margin: 18px auto;
}

.btn-9 {
    position: relative;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 700;
    color: #11286d;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-9:after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1fd1f9;
    background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%);
    transition: all 0.3s ease;
}

.btn-9:hover {
    background: transparent;
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
    color: #fff;
}

.btn-9:hover:after {
    transform: scale(2) rotate(180deg);
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; /* Change color as needed */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #ffcc00; /* Highlight "STUNNING DESIGNS" */
    text-shadow: 2px 2px 6px rgba(255, 204, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff; /* Change color as needed */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    
    /* Fade-in effect */
    animation: fadeInUp 1s ease-in-out, bounceUpDown 2s infinite ease-in-out;
}


.icon-box {
    width: 180px;
    height: 180px;
    background-color: transparent; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    border: 3px solid #3710c5; 
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle properly */
}

#packages {
    text-align: center;
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #11245a;
}

.packages-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.package {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
}

.package-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.package-images img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #11245a;
}

.package h3 {
    font-size: 20px;
    color: #11245a;
    margin-bottom: 10px;
}

.package p {
    font-size: 14px;
    color: #555;
    max-width: 90%;
    margin: 0 auto;
}

.package-center {
    width: 40%;
    margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
    .packages-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 80%;
        margin-bottom: 20px;
    }

    .package-center {
        width: 80%;
    }
}

.portfolio-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img, 
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 36, 90, 0.8);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0
}

.team-member {
    background-color: #11245a;   
}

.team-member.even {
    background-color: #171f36;
}

.team-member .hline {
    width: 70px;
    height: 2px;
    margin: 16px auto;
    background-color: rgba(5, 54, 87, 0.445);  
}


.team-member  .social-icons {
    width: 100%;
    height: 60px;
    background-color: #210e8d;
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.445);
    font-size: 24px;
    color: #fff;
    border-radius: 100px;
    margin-left: 4px;
    margin-right: 4px;
}


#testimonials img {
    width: 65px;
    height: 65px;
    border-radius: 100px;
    transition: all 0.4s ease;
}

#testimonials .nav-pills .nav-link.active {
    background-color: transparent;
}

#testimonials .nav-pills .nav-link.active img {
    transform: scale(1.3);
}

.review .stars {
    color:#c46800
}

.review p {
    max-width: 720px;
    margin: 24px auto;
    font-style: italic;
}

#clients img {
    height: 120px;
}

form .form-control {
    border-radius: 0;
}

form .form-control:focus {
    box-shadow:none;
    border-color: #020079;
}

#cta {
    background-color: #0c0836;
}

.footer-top {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: #000000;
}

.footer-bottom { 
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 50px;
    background-color: #000000;
}

footer .footer-links a,
footer .social-icons a {
    color: #fdfdfd;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #898fa1;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

footer .social-icons a {
    font-size: 24px;
}

footer .footer-links a {
    display: block;
    font-weight: 400;
}



footer .social-icons a:hover,
footer .footer-links a:hover {
    color: #030836;
}