
        /* Base Styles */
        html {
        scroll-padding-top: 100px; /* Adjust this value based on your navbar height */
        }
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Spline Sans", "Noto Sans", sans-serif;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url(../src/doodle.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.3; /* Adjust opacity as needed */
        }   

            /* Loader container */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            z-index: 9999;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        }

        .loader-container.fade-out {
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none; /* <--- add this */
        }

        .loader-text {
            color: rgb(0, 0, 0);
            font-size: 1.5rem;
            font-weight: 300;
            margin-top: 2rem;
            opacity: 0.9;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* From Uiverse.io by gustavofusco - Pencil Loader Styles */
        .pencil {
            display: block;
            width: 10em;
            height: 10em;
        }

        .pencil__body1,
        .pencil__body2,
        .pencil__body3,
        .pencil__eraser,
        .pencil__eraser-skew,
        .pencil__point,
        .pencil__rotate,
        .pencil__stroke {
            animation-duration: 3s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .pencil__body1,
        .pencil__body2,
        .pencil__body3 {
            transform: rotate(-90deg);
        }

        .pencil__body1 {
            animation-name: pencilBody1;
        }

        .pencil__body2 {
            animation-name: pencilBody2;
        }

        .pencil__body3 {
            animation-name: pencilBody3;
        }

        .pencil__eraser {
            animation-name: pencilEraser;
            transform: rotate(-90deg) translate(49px,0);
        }

        .pencil__eraser-skew {
            animation-name: pencilEraserSkew;
            animation-timing-function: ease-in-out;
        }

        .pencil__point {
            animation-name: pencilPoint;
            transform: rotate(-90deg) translate(49px,-30px);
        }

        .pencil__rotate {
            animation-name: pencilRotate;
        }

        .pencil__stroke {
            animation-name: pencilStroke;
            transform: translate(100px,100px) rotate(-113deg);
        }

        /* Pencil Animations */
        @keyframes pencilBody1 {
            from, to {
                stroke-dashoffset: 351.86;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 150.8;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilBody2 {
            from, to {
                stroke-dashoffset: 406.84;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 174.36;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilBody3 {
            from, to {
                stroke-dashoffset: 296.88;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 127.23;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilEraser {
            from, to {
                transform: rotate(-45deg) translate(49px,0);
            }
            50% {
                transform: rotate(0deg) translate(49px,0);
            }
        }

        @keyframes pencilEraserSkew {
            from, 32.5%, 67.5%, to {
                transform: skewX(0);
            }
            35%, 65% {
                transform: skewX(-4deg);
            }
            37.5%, 62.5% {
                transform: skewX(8deg);
            }
            40%, 45%, 50%, 55%, 60% {
                transform: skewX(-15deg);
            }
            42.5%, 47.5%, 52.5%, 57.5% {
                transform: skewX(15deg);
            }
        }

        @keyframes pencilPoint {
            from, to {
                transform: rotate(-90deg) translate(49px,-30px);
            }
            50% {
                transform: rotate(-225deg) translate(49px,-30px);
            }
        }

        @keyframes pencilRotate {
            from {
                transform: translate(100px,100px) rotate(0);
            }
            to {
                transform: translate(100px,100px) rotate(720deg);
            }
        }

        @keyframes pencilStroke {
            from {
                stroke-dashoffset: 439.82;
                transform: translate(100px,100px) rotate(-113deg);
            }
            50% {
                stroke-dashoffset: 164.93;
                transform: translate(100px,100px) rotate(-113deg);
            }
            75%, to {
                stroke-dashoffset: 439.82;
                transform: translate(100px,100px) rotate(112deg);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .welcome-section h1 {
                font-size: 2rem;
            }
            .welcome-section {
                padding: 2rem;
                margin: 1rem;
            }
            .pencil {
                width: 8em;
                height: 8em;
            }
        }

        /* Site Container */
        .site-container {
            position: relative;
            display: flex;
            min-height: 100vh;
            flex-direction: column;
            background-color: rgba(255, 255, 255, 0.375);
            overflow-x: hidden;
        }

        .layout-container {
            display: flex;
            height: 100%;
            flex-grow: 1;
            flex-direction: column;
        }

        /* Navbar Styles */
        .navbar {
            background:linear-gradient(90deg, #aee4f5 0%, #c7eacf);
            padding: 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            color: rgb(0, 0, 0);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: #ffffff00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 20px;
            color: rgba(255, 255, 255, 0);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
            
        }

        .nav-item {
            position: relative;
            flex: 1;
        }

        .nav-link {
            color: rgb(0, 0, 0);
            text-decoration: none;
            padding: 15px 10px;
            display: block;
            font-weight: 500;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 15px;
            border: #f5576c00 4px solid;
        }

        .nav-link:hover {
            /* background: #fcf6bd;
            border: #e4c1f9 4px solid; */
            transform: translateY(-2px);
            opacity: 1;
            visibility: visible;
        }

        .nav-link.active {
            background: #fcf6bd;
            border: #e4c1f9 4px solid;
        }

        /* Hover underline effect */
        

        /* Mobile Menu Toggle */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: rgb(0, 0, 0);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 70px;
                left: 200px;
                width: 50%;
                background:linear-gradient(90deg, #aee4f5 0%, #c7eacf);
                flex-direction: column;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgb(0, 0, 0);
                border-radius: 15px;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                
                border-radius: 15px;
            }
            .nav-menu:hover {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;    
            }

            .nav-item {
                width: 100%;
                text-align: center;
            }

            .nav-link {
                padding: 15px 20px;
                
                border-radius: 15px;
            }

            .nav-link::after {
                display: none;
            }

            .nav-link:hover {
                background-color: #e0e0e0;
                transform: translateY(-2px);
            }

            /* Hamburger Animation */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-6px, -6px);
            }
        }

        /* Main Content */
        .main-content {
            padding: 90px 160px ;
            display: flex;
            flex: 1;
            justify-content: center;
            
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;       
        }

        .content-container {
            display: flex;
            flex-direction: column;
            max-width: 960px;
            flex: 1;
            background-color: #00000000;
        }

        /* Hero Section */
        .hero-section {
            margin-bottom: 40px;
        }
        .video-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 12px;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.199);
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
        }
        .hero-text h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-family: 'Spline Sans', sans-serif;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            font-family: "Alumni Sans SC", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
        }
        /* Jidnyasa Boy */
        .bot-div {
            position: fixed;
            bottom: 0;   /* stays bottom */
            right: 0;    /* stays right */
            width: 130px;
            z-index: 1000;
            pointer-events: touch;
        }

        /* Bounce text on left-mid of bot */
        .bounce-text {
            position: absolute;
            padding: 5px 10px;
            top: 40%;       /* middle vertically on bot */
            left: -30px;    /* push to left side of bot */
            transform: translateY(-50%);
            font-size: 1.2rem;
            font-weight: bold;
            color: #000000;
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            background:linear-gradient(90deg, #aee4f5 0%, #c7eacf);
            animation: bounce 1s ease-in-out infinite;
            white-space: nowrap;
        }

        /* Keep bounce effect horizontal */
        @keyframes bounce {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-8px); }
        }
/* Floating Bot Button */
.bot-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -5px); }
}

/* Chat Panel */
.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.chat-header {
  background:linear-gradient(90deg, #aee4f5 0%, #c7eacf);
  color: rgb(0, 0, 0);
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header span {
  cursor: pointer;
    font-size: 2rem;
}

.chat-messages {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
  background-image: url('../src/logo/logo.png');
  background-color: #0000005a; /* Fallback color */
  background-repeat: no-repeat;    /* Don't tile the image */
  background-position: center;     /* Center it */
  background-size: contain;
  display: flex;           /* Make children flex items */
  flex-direction: column;
}

.msg {
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 14px;
  max-width: 75%;
}

.msg.bot {
  background: #e0e0e0;
  align-items: flex-start;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  align-self: flex-start;  /* Stick bubble to left */
  text-align: left;

}

.msg.user {
  background: #4cafef;
  color: white;
  align-self: flex-end;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
}
.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.chat-input button {
  background: #4cafef;
  color: white;
  border: none;
  padding: 0 16px;   /* Equal height to input */
  cursor: pointer;
  font-size: 14px;
}


        /* Section Styles */
        .section-title {
            color: #121517;
            font-size: 28px;
            font-weight: bold;
            line-height: 1.2;
            letter-spacing: -0.015em;
            padding: 20px 16px 12px 16px;
            margin: 0;
        }

        .section-text {
            color: #121517;
            font-size: 16px;
            font-weight: normal;
            line-height: 1.6;
            padding: 4px 16px 12px 16px;
            margin: 0;
        }
        .mission-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 10px 10px;
            justify-content: center;
        }
        

        /* Cards Container */
        .cards-container {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .cards-container::-webkit-scrollbar {
            display: none;
        }

        .card-wrapper {
            display: flex;
            align-items: stretch;
            padding: 16px;
            gap: 20px;
        }

        .card {
            display: flex;
            height: 100%;
            flex: 1;
            flex-direction: column;
            gap: 16px;
            border-radius: 12px;
            min-width: 280px;
            background:linear-gradient(90deg, #aee4f5 0%, #c7eacf);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #0000004f;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .card:hover::after,
        .card.active::after {
            width: 80%;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
           
            transition: all 0.3s ease;
        }

        .card-image {
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            aspect-ratio: 16/9;
            border-radius: 12px 12px 0 0;
        }

        .card-content {
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .card-title {
            color: #121517;
            font-size: 18px;
            font-weight: 600;
            line-height: normal;
            margin: 0 0 8px 0;
        }

        .card-description {
            color: #677b83;
            font-size: 14px;
            font-weight: normal;
            line-height: 1.5;
            margin: 0;
        }
        /* Why Jidnyasa */
        .wj-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
        }

        .wj-gallery-item {
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .wj-gallery-item:hover {
            transform: scale(1.05);
        }

        .wj-gallery-item:hover::before {
            opacity: 1;
        }

        .wj-gallery-main{
            grid-row: span 2;
        }
        .wj-gallery-sub{
            grid-column: span 2;
        }
        .wj-gallery-f {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
        }
        .wj-gallery-sub-f1{
            grid-column: span 2 / span 2;
            grid-row: span 2 / span 2;
            grid-column-start: 1;
            grid-row-start: 1;
        }

        .wj-gallery-main-f{
            grid-column: span 2 / span 2;
            grid-row: span 4 / span 4;
            grid-column-start: 3;
            grid-row-start: 1;
        }
        .wj-gallery-sub-f{
            grid-column: span 2 / span 2;
            grid-row: span 2 / span 2;
            grid-row-start: 3;
        }
        /* Learning Phylosophy Card  */
        .lp-cards-container {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .lp-cards-container::-webkit-scrollbar {
            display: none;
        }

        .lp-card-wrapper {
            display: flex;
            align-items: stretch;
            padding: 16px;
            gap: 20px;
        }

        .lp-card {
            display: flex;
            height: 100%;
            flex: 1;
            flex-direction: column;
            gap: 16px;
            border-radius: 12px;
            min-width: 280px;
            background:#aee4f5;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .lp-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #0000004f;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .lp-card:hover {
            transform: scale(1.05);
        }

        .lp-card-image {
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            aspect-ratio: 16/9;
            border-radius: 12px 12px 0 0;
        }

        .lp-card-content {
            display: flex;
            flex-direction: column;
            padding: 5px;
        }

        .lp-card-title {
            color: #121517;
            font-size: 18px;
            font-weight: 600;
            line-height: normal;
            margin: 0 0 4px 0;
        }

        /* Background Images for Cards */
        .nursery-bg {
            background-image: url(../src/Classes/nur.png);
        }

        .kg1-bg {
            background-image: url(../src/Classes/kg1.png);
        }

        .kg2-bg {
            background-image: url(../src/Classes/kg2.png);
        }

        .problem-solving-bg {
            background-image: url(../src/Learning/number.png);
        }

        .yoga-bg {
            background-image: url(../src/Learning/yoga.png);
        }

        .critical-thinking-bg {
            background-image: url(../src/Learning/waterfloat.png);
        }



        /* Admission Styles */
        .sub-section-title{
            color: #121517;
            font-size: 18px;
            font-weight: bold;
            line-height: 1.2;
            letter-spacing: -0.015em;
            padding: 20px 16px 12px 16px;
            margin: 0;

        }
        .apply-now-container {
            position: right;
            display: flex;
            justify-content: center;
            margin-top: -30px;
        }
        .apply-btn {
            
            color: rgb(0, 0, 0);
            border: #e4c1f9 4px solid;
            border-radius: 15px;
            padding: 0 16px;
            height: 40px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            
        }
        .apply-btn::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #0000004f;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .apply-btn:hover {
            background: #fcf6bd;
            border: #e4c1f9 4px solid;
            display: flex;
            align-items: center;
            padding: 0 16px;        
            color: rgb(0, 0, 0);
            transform: translateY(-2px);
            opacity: 1;
            visibility: visible;
            

        }






        /* Gallery Styles */
        .gallery-section {
            margin: 0px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            padding: 16px;
        }

        .gallery-item {
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            aspect-ratio: 1;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item-1 {
            background-image: url(../src/Gallery/hardsoft.jpg);
        }

        .gallery-item-2 {
            background-image: url(../src/Gallery/roughsoft.jpg);
        }

        .gallery-item-3 {
            background-image: url(../src/Gallery/Rocket.jpg);
        }

        .gallery-item-4 {
            background-image: url(../src/Gallery/IMG_20240327_105601.jpg);
        }

        .gallery-item-5 {
            background-image: url(../src/Gallery/IMG_20240327_105723.jpg);
        }

        .gallery-item-6 {
            background-image: url(../src/Gallery/IMG_20240815_081840.jpg);
        }

        .gallery-button-container {
            position: right;
            display: flex;
            justify-content: center;
            margin-top: 0px;
        }

        .gallery-button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            margin-top: -6px;        
            background-color: #00000000;
            color: rgb(0, 0, 0);
            
            transition: all 0.3s ease;
        }

        .gallery-button:hover {
            transform: translateY(-2px);
            background-color: #00000000;
        }

        .hover-underline-animation-gallery {
            position: relative;
            text-transform: uppercase;
        }

        .hover-underline-animation-gallery::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: rgb(0, 0, 0);
            transition: width 0.3s ease;
        }

        .gallery-button:hover .hover-underline-animation-gallery::after {
            width: 100%;
        }

        #arrow-horizontal {
            transition: transform 0.3s ease;
            fill: rgb(0, 0, 0);
        }

        .gallery-button:hover #arrow-horizontal {
            transform: translateX(5px);
        }
                .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .nav-btn-gallery {
            color: rgb(0, 0, 0);
            border: #e4c1f9 4px solid;
            border-radius: 15px;
            padding: 0 16px;
            height: 40px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn-gallery:hover,
        .nav-btn-gallery.active {
            background: #fcf6bd;
            border: #e4c1f9 4px solid;
            display: flex;
            align-items: center;
            padding: 0 16px;        
            color: rgb(0, 0, 0);
            transform: translateY(-2px);
            opacity: 1;
            visibility: visible;
        }

        /* CTA Section */
        .cta-section {
            padding: 40px 16px 80px 16px;
            background-color:rgba(0, 0, 0, 0.204);
            border-radius: 20px;
            margin: 40px 0;
        }

        .cta-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 24px;
            text-align: center;
        }

        .cta-title {
            color: rgb(0, 0, 0);
            font-size: 32px;
            font-weight: bold;
            line-height: 1.2;
            letter-spacing: -0.015em;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-button-wrapper {
            display: flex;
            flex: 1;
            justify-content: center;
        }

        .cta-button {
            display: flex;
            min-width: 150px;
            max-width: 300px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 50px;
            height: 50px;
            padding: 0 30px;
            background-color: white;
            color: #f5576c;
            font-size: 16px;
            font-weight: bold;
            line-height: normal;
            letter-spacing: 0.015em;
            border: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .cta-button span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Responsive Design */
        @media (min-width: 480px) {
            .cta-title {
                font-size: 36px;
                font-weight: 900;
                letter-spacing: -0.033em;
            }
            
            .cta-button {
                height: 55px;
                padding: 0 35px;
                font-size: 18px;
            }
            
            .cta-content {
                gap: 32px;
                padding: 0 40px;
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                padding: 90px 40px 0;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 90px 20px 0;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .card-wrapper {
                flex-direction: column;
            }
            
            .card {
                min-width: 100%;
            }

            .section-title {
                font-size: 24px;
            }
        }
    



    .footer {
        margin-top: auto;
        background-color: #8ecae6;
        color: #000000;
        text-align: center;
        padding: 20px;
        
        }

        .footer-links a,
        .footer-social a {
        margin: 0 15px;
        color: #000000;
        text-decoration: none;
        }

        .footer-social a i {
        font-size: 1.2rem;
        color: #000000;
        transition: color 0.3s ease;
        }
        